2019-06-01 16:54:36 +00:00
|
|
|
'''
|
|
|
|
Onionr - Private P2P Communication
|
|
|
|
|
|
|
|
This file handles the command for exporting blocks to disk
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
'''
|
2019-06-20 00:59:05 +00:00
|
|
|
import sys, os
|
2019-06-01 16:54:36 +00:00
|
|
|
import logger, onionrstorage
|
2019-07-27 02:42:55 +00:00
|
|
|
from utils import createdirs
|
2019-06-25 23:07:35 +00:00
|
|
|
from onionrutils import stringvalidators
|
2019-07-27 02:42:55 +00:00
|
|
|
import filepaths
|
2019-07-30 05:19:22 +00:00
|
|
|
def doExport(bHash):
|
2019-07-27 02:42:55 +00:00
|
|
|
createdirs.create_dirs()
|
|
|
|
data = onionrstorage.getData(bHash)
|
|
|
|
with open('%s/%s.dat' % (filepaths.export_location, bHash), 'wb') as exportFile:
|
2019-06-01 16:54:36 +00:00
|
|
|
exportFile.write(data)
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.info('Block exported as file', terminal=True)
|
2019-06-01 16:54:36 +00:00
|
|
|
|
2019-07-30 05:19:22 +00:00
|
|
|
def export_block():
|
2019-07-27 02:42:55 +00:00
|
|
|
exportDir = filepaths.export_location
|
2019-06-01 16:54:36 +00:00
|
|
|
try:
|
2019-09-09 00:21:36 +00:00
|
|
|
if not stringvalidators.validate_hash(sys.argv[2]): raise ValueError
|
|
|
|
except (IndexError, ValueError):
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.error('No valid block hash specified.', terminal=True)
|
2019-06-01 16:54:36 +00:00
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
bHash = sys.argv[2]
|
2019-09-21 05:06:49 +00:00
|
|
|
doExport(bHash)
|
|
|
|
|
|
|
|
export_block.onionr_help = "<block hash>: Export an Onionr block to a file. Export directory is in the Onionr data directory under block-export/"
|