2020-01-21 08:34:15 +00:00
|
|
|
"""Onionr - Private P2P Communication.
|
|
|
|
|
|
|
|
SSE API for node client access
|
|
|
|
"""
|
2020-01-14 08:29:42 +00:00
|
|
|
from flask import g, Blueprint
|
|
|
|
from gevent import sleep
|
|
|
|
|
2020-01-27 08:20:09 +00:00
|
|
|
from onionrstatistics.transports.tor import TorStats
|
2020-01-14 08:29:42 +00:00
|
|
|
from .. import wrapper
|
2020-01-21 08:34:15 +00:00
|
|
|
"""
|
|
|
|
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/>.
|
|
|
|
"""
|
2020-01-14 08:29:42 +00:00
|
|
|
|
|
|
|
private_sse_blueprint = Blueprint('privatesse', __name__)
|
|
|
|
SSEWrapper = wrapper.SSEWrapper()
|
|
|
|
|
|
|
|
|
|
|
|
@private_sse_blueprint.route('/hello')
|
2020-01-21 08:34:15 +00:00
|
|
|
def stream_hello():
|
2020-01-14 08:29:42 +00:00
|
|
|
def print_hello():
|
|
|
|
while True:
|
|
|
|
yield "hello\n\n"
|
|
|
|
sleep(1)
|
|
|
|
return SSEWrapper.handle_sse_request(print_hello)
|
2020-01-21 08:34:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
@private_sse_blueprint.route('/torcircuits')
|
|
|
|
def stream_tor_circuits():
|
|
|
|
tor_stats = g.too_many.get(TorStats)
|
2020-01-25 08:23:18 +00:00
|
|
|
def circuit_stat_stream():
|
2020-01-21 08:34:15 +00:00
|
|
|
while True:
|
2020-01-25 08:23:18 +00:00
|
|
|
yield "data: " + tor_stats.get_json() + "\n\n"
|
|
|
|
sleep(10)
|
|
|
|
return SSEWrapper.handle_sse_request(circuit_stat_stream)
|