basic cs messages supported

This commit is contained in:
Kevin Froman 2019-03-30 23:50:54 -05:00
parent 815f1b1d4e
commit 063330cfee
2 changed files with 65 additions and 7 deletions

View File

@ -17,10 +17,55 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
'''
from flask import Response, request, redirect, Blueprint, abort
import json
from flask import Response, request, redirect, Blueprint, g
import core
flask_blueprint = Blueprint('clandenstine', __name__)
core_inst = core.Core()
flask_blueprint = Blueprint('clandestine_control', __name__)
@flask_blueprint.route('/clandenstine/ping')
@flask_blueprint.route('/clandestine/ping')
def ping():
return 'pong!'
@flask_blueprint.route('/clandestine/send/<peer>', methods=['POST'])
def send_message(peer):
data = request.get_json(force=True)
core_inst.keyStore.refresh()
existing = core_inst.keyStore.get('s' + peer)
if existing is None:
existing = []
existing.append(data)
core_inst.keyStore.put('s' + peer, existing)
core_inst.keyStore.flush()
return Response('success')
@flask_blueprint.route('/clandestine/gets/<peer>')
def get_sent(peer):
sent = core_inst.keyStore.get('s' + peer)
if sent is None:
sent = []
return Response(json.dumps(sent))
@flask_blueprint.route('/clandestine/addrec/<peer>', methods=['POST'])
def add_rec(peer):
data = request.get_json(force=True)
core_inst.keyStore.refresh()
existing = core_inst.keyStore.get('r' + peer)
if existing is None:
existing = []
existing.append(data)
core_inst.keyStore.put('r' + peer, existing)
core_inst.keyStore.flush()
return Response('success')
@flask_blueprint.route('/clandestine/getrec/<peer>')
def get_messages(peer):
core_inst.keyStore.refresh()
existing = core_inst.keyStore.get('r' + peer)
if existing is None:
existing = []
else:
existing = list(existing)
core_inst.keyStore.delete('r' + peer)
return Response(json.dumps(existing))

View File

@ -17,9 +17,10 @@
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
import core
from flask import Response, request, redirect, Blueprint, abort, g
sys.path.insert(0, os.path.dirname(os.path.realpath(__file__)))
direct_blueprint = Blueprint('clandestine', __name__)
core_inst = core.Core()
@ -36,7 +37,19 @@ def request_setup():
@direct_blueprint.route('/clandestine/ping')
def pingdirect():
return 'pong!' + g.peer
return 'pong!'
@direct_blueprint.route('/clandestine/send')
def poll_chat
@direct_blueprint.route('/clandestine/sendto', methods=['POST', 'GET'])
def sendto():
try:
msg = request.get_json(force=True)
except:
msg = ''
if msg == None or msg == '':
msg = json.dumps({'m': 'hello world', 't': core_inst._utils.getEpoch()})
core_inst._utils.localCommand('/clandestine/addrec/%s' % (g.peer,), post=True, postData=msg)
return Response('success')
@direct_blueprint.route('/clandestine/poll')
def poll_chat():
return Response(core_inst._utils.localCommand('/clandestine/gets/%s' % (g.peer,)))