2019-06-12 20:12:56 +00:00
|
|
|
'''
|
|
|
|
Onionr - Private P2P Communication
|
|
|
|
|
|
|
|
This file handles the commands for adding and getting files from the Onionr network
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
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-03-08 01:08:06 +00:00
|
|
|
import base64, sys, os
|
|
|
|
import logger
|
2019-03-09 01:57:44 +00:00
|
|
|
from onionrblockapi import Block
|
2019-06-25 23:07:35 +00:00
|
|
|
from onionrutils import stringvalidators
|
2019-03-08 01:08:06 +00:00
|
|
|
def add_file(o_inst, singleBlock=False, blockType='bin'):
|
|
|
|
'''
|
|
|
|
Adds a file to the onionr network
|
|
|
|
'''
|
|
|
|
|
|
|
|
if len(sys.argv) >= 3:
|
|
|
|
filename = sys.argv[2]
|
|
|
|
contents = None
|
|
|
|
|
|
|
|
if not os.path.exists(filename):
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.error('That file does not exist. Improper path (specify full path)?', terminal=True)
|
2019-03-08 01:08:06 +00:00
|
|
|
return
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.info('Adding file... this might take a long time.', terminal=True)
|
2019-03-08 01:08:06 +00:00
|
|
|
try:
|
|
|
|
with open(filename, 'rb') as singleFile:
|
|
|
|
blockhash = o_inst.onionrCore.insertBlock(base64.b64encode(singleFile.read()), header=blockType)
|
|
|
|
if len(blockhash) > 0:
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.info('File %s saved in block %s' % (filename, blockhash), terminal=True)
|
2019-03-08 01:08:06 +00:00
|
|
|
except:
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.error('Failed to save file in block.', timestamp = False, terminal=True)
|
2019-03-08 01:08:06 +00:00
|
|
|
else:
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.error('%s add-file <filename>' % sys.argv[0], timestamp = False, terminal=True)
|
2019-03-09 01:57:44 +00:00
|
|
|
|
|
|
|
def getFile(o_inst):
|
|
|
|
'''
|
|
|
|
Get a file from onionr blocks
|
|
|
|
'''
|
|
|
|
try:
|
|
|
|
fileName = sys.argv[2]
|
|
|
|
bHash = sys.argv[3]
|
|
|
|
except IndexError:
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.error("Syntax %s %s" % (sys.argv[0], '/path/to/filename <blockhash>'), terminal=True)
|
2019-03-09 01:57:44 +00:00
|
|
|
else:
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.info(fileName, terminal=True)
|
2019-03-09 01:57:44 +00:00
|
|
|
|
|
|
|
contents = None
|
|
|
|
if os.path.exists(fileName):
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.error("File already exists", terminal=True)
|
2019-03-09 01:57:44 +00:00
|
|
|
return
|
2019-06-25 23:07:35 +00:00
|
|
|
if not stringvalidators.validate_hash(bHash):
|
2019-06-20 00:59:05 +00:00
|
|
|
logger.error('Block hash is invalid', terminal=True)
|
2019-03-09 01:57:44 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
with open(fileName, 'wb') as myFile:
|
|
|
|
myFile.write(base64.b64decode(Block(bHash, core=o_inst.onionrCore).bcontent))
|
|
|
|
return
|