2019-05-07 17:56:20 +00:00
|
|
|
'''
|
2019-06-12 20:12:56 +00:00
|
|
|
Onionr - Private P2P Communication
|
2019-05-07 17:56:20 +00:00
|
|
|
|
|
|
|
Accept block uploads to the public API server
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
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/>.
|
|
|
|
'''
|
|
|
|
import sys
|
|
|
|
from flask import Response, abort
|
2019-09-21 23:49:24 +00:00
|
|
|
|
|
|
|
from onionrblocks import blockimporter
|
|
|
|
import onionrexceptions, logger
|
|
|
|
|
2019-08-02 23:00:04 +00:00
|
|
|
def accept_upload(request):
|
2019-05-07 17:56:20 +00:00
|
|
|
resp = 'failure'
|
2019-09-12 15:54:36 +00:00
|
|
|
data = request.get_data()
|
|
|
|
if sys.getsizeof(data) < 100000000:
|
|
|
|
try:
|
|
|
|
if blockimporter.importBlockFromData(data):
|
|
|
|
resp = 'success'
|
|
|
|
else:
|
2019-08-12 04:00:08 +00:00
|
|
|
resp = 'failure'
|
2019-09-12 15:54:36 +00:00
|
|
|
logger.warn('Error encountered importing uploaded block')
|
|
|
|
except onionrexceptions.BlacklistedBlock:
|
|
|
|
logger.debug('uploaded block is blacklisted')
|
|
|
|
resp = 'failure'
|
|
|
|
except onionrexceptions.InvalidProof:
|
|
|
|
resp = 'proof'
|
|
|
|
except onionrexceptions.DataExists:
|
|
|
|
resp = 'exists'
|
2019-05-07 17:56:20 +00:00
|
|
|
if resp == 'failure':
|
|
|
|
abort(400)
|
2019-09-12 15:54:36 +00:00
|
|
|
elif resp == 'proof':
|
|
|
|
resp = Response(resp, 400)
|
|
|
|
else:
|
|
|
|
resp = Response(resp)
|
2019-05-07 17:56:20 +00:00
|
|
|
return resp
|