This repository was archived by the owner on May 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreamer.py
51 lines (43 loc) · 1.6 KB
/
streamer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from flask import Flask, request, abort
from flask_redis import FlaskRedis
import requests
application = Flask(__name__)
application.config['REDIS_URL'] = "redis://localhost:6379/0"
redis_store = FlaskRedis(application)
dispatch_server_address = "178.62.117.207"
@application.route("/", methods=['GET'])
def index():
ip = request.environ.get('HTTP_X_REAL_IP', request.remote_addr)
return "This is a streaming server. Nothing interesting here. Your ip: " + ip
@application.route("/check", methods=['POST'])
def check():
stream_name = request.form.get('name')
key = request.form.get('key')
if redis_store.exists(stream_name) and \
redis_store.get(stream_name).decode('UTF-8') == key:
r = requests.post('http://' + dispatch_server_address + '/stream_status_changed',
data={'name': stream_name, 'status': 1})
return 'ok'
abort(401)
@application.route("/done", methods=['POST'])
def done():
stream_name = request.form.get('name')
r = requests.post('http://' + dispatch_server_address + '/stream_status_changed',
data={'name': stream_name, 'status': 0})
print(r.text)
return 'ok'
abort(401)
@application.route("/add", methods=['POST'])
def add():
ip = request.environ.get('HTTP_X_REAL_IP', request.remote_addr)
if ip != dispatch_server_address:
abort(401)
stream_name = request.form.get('name')
key = request.form.get('key')
if stream_name == None or key == None:
return str(request.form)
abort(404)
redis_store.set(stream_name, key)
return 'ok'
if __name__ == "__main__":
application.run(host='0.0.0.0')