basic cs messages supported
This commit is contained in:
parent
30630e1d8e
commit
29db7e27d9
@ -17,10 +17,55 @@
|
|||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
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():
|
def ping():
|
||||||
return 'pong!'
|
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))
|
@ -17,9 +17,10 @@
|
|||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
'''
|
'''
|
||||||
|
import sys, os, json
|
||||||
import core
|
import core
|
||||||
from flask import Response, request, redirect, Blueprint, abort, g
|
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__)
|
direct_blueprint = Blueprint('clandestine', __name__)
|
||||||
core_inst = core.Core()
|
core_inst = core.Core()
|
||||||
|
|
||||||
@ -36,7 +37,19 @@ def request_setup():
|
|||||||
|
|
||||||
@direct_blueprint.route('/clandestine/ping')
|
@direct_blueprint.route('/clandestine/ping')
|
||||||
def pingdirect():
|
def pingdirect():
|
||||||
return 'pong!' + g.peer
|
return 'pong!'
|
||||||
|
|
||||||
@direct_blueprint.route('/clandestine/send')
|
@direct_blueprint.route('/clandestine/sendto', methods=['POST', 'GET'])
|
||||||
def poll_chat
|
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,)))
|
Loading…
Reference in New Issue
Block a user