67 lines
2.1 KiB
Python
Executable File
67 lines
2.1 KiB
Python
Executable File
'''
|
|
Onionr - Private P2P Communication
|
|
|
|
HTTP endpoints for mail plugin.
|
|
'''
|
|
'''
|
|
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, os, json
|
|
from flask import Response, request, redirect, Blueprint, abort
|
|
import core
|
|
from onionrusers import contactmanager
|
|
from onionrutils import stringvalidators
|
|
sys.path.insert(0, os.path.dirname(os.path.realpath(__file__)))
|
|
import loadinbox, sentboxdb
|
|
|
|
flask_blueprint = Blueprint('mail', __name__)
|
|
c = core.Core()
|
|
kv = c.keyStore
|
|
|
|
@flask_blueprint.route('/mail/ping')
|
|
def mail_ping():
|
|
return 'pong!'
|
|
|
|
@flask_blueprint.route('/mail/deletemsg/<block>', methods=['POST'])
|
|
def mail_delete(block):
|
|
if not stringvalidators.validate_hash(block):
|
|
abort(504)
|
|
existing = kv.get('deleted_mail')
|
|
if existing is None:
|
|
existing = []
|
|
if block not in existing:
|
|
existing.append(block)
|
|
kv.put('deleted_mail', existing)
|
|
kv.flush()
|
|
return 'success'
|
|
|
|
@flask_blueprint.route('/mail/getinbox')
|
|
def list_inbox():
|
|
return ','.join(loadinbox.load_inbox(c))
|
|
|
|
@flask_blueprint.route('/mail/getsentbox')
|
|
def list_sentbox():
|
|
kv.refresh()
|
|
sentbox_list = sentboxdb.SentBox(c).listSent()
|
|
list_copy = list(sentbox_list)
|
|
deleted = kv.get('deleted_mail')
|
|
if deleted is None:
|
|
deleted = []
|
|
for x in list_copy:
|
|
if x['hash'] in deleted:
|
|
sentbox_list.remove(x)
|
|
continue
|
|
x['name'] = contactmanager.ContactManager(c, x['peer'], saveUser=False).get_info('name')
|
|
return json.dumps(sentbox_list)
|