kopia lustrzana https://github.com/snarfed/bridgy-fed
50 wiersze
1.6 KiB
Python
50 wiersze
1.6 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,
|
|
# limited context-local cache. avoid full one due to this bug:
|
|
# https://github.com/googleapis/python-ndb/issues/888
|
|
cache_policy=common.cache_policy,
|
|
global_cache=common.global_cache,
|
|
global_cache_policy=common.global_cache_policy,
|
|
global_cache_timeout_policy=common.global_cache_timeout_policy)
|
|
|
|
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('/queue/atproto-poll-chat', view_func=atproto.poll_chat_task,
|
|
methods=['POST'])
|
|
|
|
|
|
@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'
|