kopia lustrzana https://github.com/snarfed/bridgy-fed
44 wiersze
1.3 KiB
Python
44 wiersze
1.3 KiB
Python
"""Background service for processing receive, send, poll-feed, etc tasks."""
|
|
from pathlib import Path
|
|
|
|
from flask import Flask
|
|
from oauth_dropins.webutil import (
|
|
appengine_config,
|
|
appengine_info,
|
|
flask_util,
|
|
util,
|
|
)
|
|
|
|
# all protocols
|
|
import activitypub, atproto, web
|
|
import common
|
|
import models
|
|
import protocol
|
|
|
|
models.reset_protocol_properties()
|
|
|
|
# Flask app
|
|
app = Flask(__name__)
|
|
app_dir = Path(__file__).parent
|
|
app.config.from_pyfile(app_dir / 'config.py')
|
|
|
|
app.wsgi_app = flask_util.ndb_context_middleware(
|
|
app.wsgi_app, client=appengine_config.ndb_client, **common.NDB_CONTEXT_KWARGS)
|
|
|
|
app.add_url_rule('/queue/poll-feed', view_func=web.poll_feed_task, methods=['POST'])
|
|
app.add_url_rule('/queue/receive', view_func=protocol.receive_task, methods=['POST'])
|
|
app.add_url_rule('/queue/send', view_func=protocol.send_task, methods=['POST'])
|
|
app.add_url_rule('/queue/webmention', view_func=web.webmention_task, methods=['POST'])
|
|
app.add_url_rule('/cron/atproto-poll-chat', view_func=atproto.poll_chat_task,
|
|
methods=['GET'])
|
|
|
|
|
|
@app.get('/liveness_check')
|
|
@app.get('/readiness_check')
|
|
def health_check():
|
|
"""App Engine Flex health checks.
|
|
|
|
https://cloud.google.com/appengine/docs/flexible/reference/app-yaml?tab=python#updated_health_checks
|
|
"""
|
|
return 'OK'
|