Как создать веб-push-уведомление с помощью Flask - PullRequest
0 голосов
/ 29 апреля 2019

Я пытаюсь реализовать push-уведомление в своем проекте.Используя некоторые уроки, я создал оповещение на странице индекса, когда я публикую сообщение.Но это далеко не то, что я хочу.

index.html

<html>
<head>
    <title>Test Page</title>
</head>
<body>
    <h1>Testing...</h1>
</body>
<script
  src="https://code.jquery.com/jquery-2.2.4.min.js"
  integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
  crossorigin="anonymous"></script>
<script type="text/javascript">
    var source = new EventSource('/stream');
    source.onmessage = function (event) {
    alert(event.data);
    };
</script>
</html>

post.html

<html>
<head>
    <title>Posting a Message</title>
</head>
<body>
    <form action="{{url_for('post')}}" method='post'>
        Message: <input type="text" name="message" size='50'> <input type="submit" value="Launch!">
    </form>
</body>
</html>

app.py

#!/usr/bin/env python
from flask import Flask, render_template, request, session, Response
from redis import Redis
import datetime

app = Flask(__name__)
app.secret_key = 'asdf'
red = Redis(host='localhost', port=6379, db=0)

def event_stream():
    pubsub = red.pubsub()
    pubsub.subscribe('notification')
    for message in pubsub.listen():
        print message
        yield 'data: %s\n\n' % message['data']


@app.route('/post', methods=['POST','GET'])
def post():
 if request.method=="POST":
    message = request.form['message']
    now = datetime.datetime.now().replace(microsecond=0).time()
    red.publish('notification', u'[%s] %s: %s' % (now.isoformat(), 'Aviso', message))
 return render_template('post.html')


@app.route('/stream')
def stream():
    return Response(event_stream(),
                          mimetype="text/event-stream")

@app.route('/')
def index():
    return render_template('index.html')

if __name__=="__main__":
    app.run(host='0.0.0.0', port=8001, debug=True,threaded=True)

Хорошо, я хотел бы реализоватьподписаться на систему, я думаю, что так называется.Пользователь разрешает получать уведомления от веб-сайта, и когда он нажимает на «новости», он открывает новую страницу с подробным содержанием.

Не требуется открывать страницу указателя для получения сообщения.

...