2019-08-01 12:55:30 -05:00
|
|
|
import json
|
|
|
|
import traceback
|
|
|
|
from datetime import datetime
|
|
|
|
from datetime import timezone
|
|
|
|
|
|
|
|
import flask
|
|
|
|
import requests
|
|
|
|
from flask import current_app as app
|
|
|
|
from little_boxes import activitypub as ap
|
|
|
|
from little_boxes.errors import ActivityGoneError
|
|
|
|
from little_boxes.errors import ActivityNotFoundError
|
|
|
|
from little_boxes.errors import NotAnActivityError
|
|
|
|
from little_boxes.httpsig import HTTPSigAuth
|
|
|
|
from requests.exceptions import HTTPError
|
|
|
|
|
|
|
|
import config
|
2019-08-01 15:00:26 -05:00
|
|
|
from config import DB
|
2019-08-11 05:07:30 -05:00
|
|
|
from config import MEDIA_CACHE
|
2019-08-01 15:00:26 -05:00
|
|
|
from core import gc
|
2019-08-01 15:25:58 -05:00
|
|
|
from core.activitypub import Box
|
2019-08-10 04:47:50 -05:00
|
|
|
from core.activitypub import _actor_hash
|
2019-08-04 13:08:47 -05:00
|
|
|
from core.activitypub import _add_answers_to_question
|
2019-08-10 04:47:50 -05:00
|
|
|
from core.activitypub import no_cache
|
2019-08-04 13:08:47 -05:00
|
|
|
from core.activitypub import post_to_outbox
|
2019-08-11 04:41:16 -05:00
|
|
|
from core.activitypub import update_cached_actor
|
2019-08-10 04:47:50 -05:00
|
|
|
from core.db import update_one_activity
|
2019-08-04 09:34:30 -05:00
|
|
|
from core.inbox import process_inbox
|
2019-08-01 15:00:26 -05:00
|
|
|
from core.meta import MetaKey
|
2019-08-10 04:47:50 -05:00
|
|
|
from core.meta import by_remote_id
|
|
|
|
from core.meta import flag
|
|
|
|
from core.meta import upsert
|
2019-08-01 15:00:26 -05:00
|
|
|
from core.notifications import set_inbox_flags
|
2019-08-04 09:34:30 -05:00
|
|
|
from core.outbox import process_outbox
|
2019-08-07 16:27:57 -05:00
|
|
|
from core.remote import track_failed_send
|
|
|
|
from core.remote import track_successful_send
|
2019-08-01 14:44:35 -05:00
|
|
|
from core.shared import MY_PERSON
|
2019-08-04 09:34:30 -05:00
|
|
|
from core.shared import _Response
|
2019-08-01 14:44:35 -05:00
|
|
|
from core.shared import back
|
|
|
|
from core.shared import p
|
2019-08-01 15:00:26 -05:00
|
|
|
from core.tasks import Tasks
|
2019-08-01 12:55:30 -05:00
|
|
|
from utils import now
|
|
|
|
from utils import opengraph
|
|
|
|
|
|
|
|
SIG_AUTH = HTTPSigAuth(config.KEY)
|
|
|
|
|
|
|
|
blueprint = flask.Blueprint("tasks", __name__)
|
|
|
|
|
|
|
|
|
|
|
|
class TaskError(Exception):
|
|
|
|
"""Raised to log the error for poussetaches."""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.message = traceback.format_exc()
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route("/task/update_question", methods=["POST"])
|
2019-08-04 09:34:30 -05:00
|
|
|
def task_update_question() -> _Response:
|
2019-08-01 12:55:30 -05:00
|
|
|
"""Sends an Update."""
|
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
|
|
|
iri = task.payload
|
|
|
|
try:
|
|
|
|
app.logger.info(f"Updating question {iri}")
|
|
|
|
cc = [config.ID + "/followers"]
|
|
|
|
doc = DB.activities.find_one({"box": Box.OUTBOX.value, "remote_id": iri})
|
|
|
|
_add_answers_to_question(doc)
|
|
|
|
question = ap.Question(**doc["activity"]["object"])
|
|
|
|
|
|
|
|
raw_update = dict(
|
|
|
|
actor=question.id,
|
|
|
|
object=question.to_dict(embed=True),
|
|
|
|
attributedTo=MY_PERSON.id,
|
|
|
|
cc=list(set(cc)),
|
|
|
|
to=[ap.AS_PUBLIC],
|
|
|
|
)
|
|
|
|
raw_update["@context"] = config.DEFAULT_CTX
|
|
|
|
|
|
|
|
update = ap.Update(**raw_update)
|
|
|
|
print(update)
|
|
|
|
print(update.to_dict())
|
|
|
|
post_to_outbox(update)
|
|
|
|
|
|
|
|
except HTTPError as err:
|
|
|
|
app.logger.exception("request failed")
|
|
|
|
if 400 >= err.response.status_code >= 499:
|
|
|
|
app.logger.info("client error, no retry")
|
|
|
|
return ""
|
|
|
|
|
|
|
|
raise TaskError() from err
|
|
|
|
except Exception as err:
|
|
|
|
app.logger.exception("task failed")
|
|
|
|
raise TaskError() from err
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route("/task/fetch_og_meta", methods=["POST"])
|
2019-08-04 09:34:30 -05:00
|
|
|
def task_fetch_og_meta() -> _Response:
|
2019-08-01 12:55:30 -05:00
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
|
|
|
iri = task.payload
|
|
|
|
try:
|
|
|
|
activity = ap.fetch_remote_activity(iri)
|
|
|
|
app.logger.info(f"activity={activity!r}")
|
|
|
|
if activity.has_type(ap.ActivityType.CREATE):
|
|
|
|
note = activity.get_object()
|
|
|
|
links = opengraph.links_from_note(note.to_dict())
|
|
|
|
og_metadata = opengraph.fetch_og_metadata(config.USER_AGENT, links)
|
|
|
|
for og in og_metadata:
|
|
|
|
if not og.get("image"):
|
|
|
|
continue
|
|
|
|
config.MEDIA_CACHE.cache_og_image(og["image"], iri)
|
|
|
|
|
|
|
|
app.logger.debug(f"OG metadata {og_metadata!r}")
|
|
|
|
DB.activities.update_one(
|
|
|
|
{"remote_id": iri}, {"$set": {"meta.og_metadata": og_metadata}}
|
|
|
|
)
|
|
|
|
|
|
|
|
app.logger.info(f"OG metadata fetched for {iri}: {og_metadata}")
|
|
|
|
except (ActivityGoneError, ActivityNotFoundError):
|
|
|
|
app.logger.exception(f"dropping activity {iri}, skip OG metedata")
|
|
|
|
return ""
|
|
|
|
except requests.exceptions.HTTPError as http_err:
|
|
|
|
if 400 <= http_err.response.status_code < 500:
|
|
|
|
app.logger.exception("bad request, no retry")
|
|
|
|
return ""
|
|
|
|
app.logger.exception("failed to fetch OG metadata")
|
|
|
|
raise TaskError() from http_err
|
|
|
|
except Exception as err:
|
|
|
|
app.logger.exception(f"failed to fetch OG metadata for {iri}")
|
|
|
|
raise TaskError() from err
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route("/task/cache_object", methods=["POST"])
|
2019-08-04 09:34:30 -05:00
|
|
|
def task_cache_object() -> _Response:
|
2019-08-01 12:55:30 -05:00
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
|
|
|
iri = task.payload
|
|
|
|
try:
|
|
|
|
activity = ap.fetch_remote_activity(iri)
|
|
|
|
app.logger.info(f"activity={activity!r}")
|
|
|
|
obj = activity.get_object()
|
2019-08-11 04:32:52 -05:00
|
|
|
|
|
|
|
# Refetch the object actor (without cache)
|
|
|
|
with no_cache():
|
|
|
|
obj_actor = ap.fetch_remote_activity(obj.get_actor().id)
|
2019-08-10 04:47:50 -05:00
|
|
|
|
|
|
|
cache = {MetaKey.OBJECT: obj.to_dict(embed=True)}
|
|
|
|
|
|
|
|
if activity.get_actor().id != obj_actor.id:
|
2019-08-11 04:32:52 -05:00
|
|
|
# Cache the object actor
|
|
|
|
obj_actor_hash = _actor_hash(obj_actor)
|
2019-08-10 04:47:50 -05:00
|
|
|
cache[MetaKey.OBJECT_ACTOR] = obj_actor.to_dict(embed=True)
|
|
|
|
cache[MetaKey.OBJECT_ACTOR_ID] = obj_actor.id
|
|
|
|
cache[MetaKey.OBJECT_ACTOR_HASH] = obj_actor_hash
|
|
|
|
|
2019-08-11 04:32:52 -05:00
|
|
|
# Update the actor cache for the other activities
|
2019-08-11 04:41:16 -05:00
|
|
|
update_cached_actor(obj_actor)
|
2019-08-11 04:32:52 -05:00
|
|
|
|
2019-08-10 04:47:50 -05:00
|
|
|
update_one_activity(by_remote_id(activity.id), upsert(cache))
|
2019-08-11 04:32:52 -05:00
|
|
|
|
2019-08-01 12:55:30 -05:00
|
|
|
except (ActivityGoneError, ActivityNotFoundError, NotAnActivityError):
|
|
|
|
DB.activities.update_one({"remote_id": iri}, {"$set": {"meta.deleted": True}})
|
|
|
|
app.logger.exception(f"flagging activity {iri} as deleted, no object caching")
|
|
|
|
except Exception as err:
|
|
|
|
app.logger.exception(f"failed to cache object for {iri}")
|
|
|
|
raise TaskError() from err
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route("/task/finish_post_to_outbox", methods=["POST"]) # noqa:C901
|
2019-08-04 09:34:30 -05:00
|
|
|
def task_finish_post_to_outbox() -> _Response:
|
2019-08-01 12:55:30 -05:00
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
|
|
|
iri = task.payload
|
|
|
|
try:
|
|
|
|
activity = ap.fetch_remote_activity(iri)
|
|
|
|
app.logger.info(f"activity={activity!r}")
|
|
|
|
|
|
|
|
recipients = activity.recipients()
|
|
|
|
|
2019-08-04 09:34:30 -05:00
|
|
|
process_outbox(activity, {})
|
2019-08-01 12:55:30 -05:00
|
|
|
|
|
|
|
app.logger.info(f"recipients={recipients}")
|
|
|
|
activity = ap.clean_activity(activity.to_dict())
|
|
|
|
|
|
|
|
payload = json.dumps(activity)
|
|
|
|
for recp in recipients:
|
|
|
|
app.logger.debug(f"posting to {recp}")
|
|
|
|
Tasks.post_to_remote_inbox(payload, recp)
|
|
|
|
except (ActivityGoneError, ActivityNotFoundError):
|
|
|
|
app.logger.exception(f"no retry")
|
|
|
|
except Exception as err:
|
|
|
|
app.logger.exception(f"failed to post to remote inbox for {iri}")
|
|
|
|
raise TaskError() from err
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route("/task/finish_post_to_inbox", methods=["POST"]) # noqa: C901
|
2019-08-04 09:34:30 -05:00
|
|
|
def task_finish_post_to_inbox() -> _Response:
|
2019-08-01 12:55:30 -05:00
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
|
|
|
iri = task.payload
|
|
|
|
try:
|
|
|
|
activity = ap.fetch_remote_activity(iri)
|
|
|
|
app.logger.info(f"activity={activity!r}")
|
|
|
|
|
2019-08-04 09:34:30 -05:00
|
|
|
process_inbox(activity, {})
|
|
|
|
|
2019-08-01 12:55:30 -05:00
|
|
|
except (ActivityGoneError, ActivityNotFoundError, NotAnActivityError):
|
|
|
|
app.logger.exception(f"no retry")
|
|
|
|
except Exception as err:
|
2019-08-05 15:40:24 -05:00
|
|
|
app.logger.exception(f"failed to cfinish post to inbox for {iri}")
|
2019-08-01 12:55:30 -05:00
|
|
|
raise TaskError() from err
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route("/task/cache_attachments", methods=["POST"])
|
2019-08-04 09:34:30 -05:00
|
|
|
def task_cache_attachments() -> _Response:
|
2019-08-01 12:55:30 -05:00
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
|
|
|
iri = task.payload
|
|
|
|
try:
|
|
|
|
activity = ap.fetch_remote_activity(iri)
|
|
|
|
app.logger.info(f"activity={activity!r}")
|
|
|
|
# Generates thumbnails for the actor's icon and the attachments if any
|
|
|
|
|
|
|
|
obj = activity.get_object()
|
|
|
|
|
|
|
|
# Iter the attachments
|
|
|
|
for attachment in obj._data.get("attachment", []):
|
|
|
|
try:
|
|
|
|
config.MEDIA_CACHE.cache_attachment(attachment, iri)
|
|
|
|
except ValueError:
|
|
|
|
app.logger.exception(f"failed to cache {attachment}")
|
|
|
|
|
|
|
|
app.logger.info(f"attachments cached for {iri}")
|
|
|
|
|
|
|
|
except (ActivityGoneError, ActivityNotFoundError, NotAnActivityError):
|
|
|
|
app.logger.exception(f"dropping activity {iri}, no attachment caching")
|
|
|
|
except Exception as err:
|
|
|
|
app.logger.exception(f"failed to cache attachments for {iri}")
|
|
|
|
raise TaskError() from err
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route("/task/cache_actor", methods=["POST"])
|
2019-08-04 09:34:30 -05:00
|
|
|
def task_cache_actor() -> _Response:
|
2019-08-01 12:55:30 -05:00
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
|
|
|
iri = task.payload["iri"]
|
|
|
|
try:
|
|
|
|
activity = ap.fetch_remote_activity(iri)
|
|
|
|
app.logger.info(f"activity={activity!r}")
|
|
|
|
|
2019-08-10 04:47:50 -05:00
|
|
|
# Reload the actor without caching (in case it got upated)
|
|
|
|
with no_cache():
|
|
|
|
actor = ap.fetch_remote_activity(activity.get_actor().id)
|
|
|
|
|
2019-08-01 12:55:30 -05:00
|
|
|
# Fetch the Open Grah metadata if it's a `Create`
|
|
|
|
if activity.has_type(ap.ActivityType.CREATE):
|
|
|
|
Tasks.fetch_og_meta(iri)
|
|
|
|
|
|
|
|
if activity.has_type(ap.ActivityType.FOLLOW):
|
|
|
|
if actor.id == config.ID:
|
|
|
|
# It's a new following, cache the "object" (which is the actor we follow)
|
|
|
|
DB.activities.update_one(
|
2019-08-10 04:47:50 -05:00
|
|
|
by_remote_id(iri),
|
|
|
|
upsert({MetaKey.OBJECT: activity.get_object().to_dict(embed=True)}),
|
2019-08-01 12:55:30 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
# Cache the actor info
|
2019-08-11 04:41:16 -05:00
|
|
|
update_cached_actor(actor)
|
2019-08-01 12:55:30 -05:00
|
|
|
|
2019-08-10 04:47:50 -05:00
|
|
|
# TODO(tsileo): Also update following (it's in the object)
|
|
|
|
# DB.activities.update_many(
|
|
|
|
# {"meta.object_id": actor.id}, {"$set": {"meta.object": actor.to_dict(embed=True)}}
|
|
|
|
# )
|
|
|
|
|
2019-08-01 12:55:30 -05:00
|
|
|
app.logger.info(f"actor cached for {iri}")
|
2019-08-11 05:17:02 -05:00
|
|
|
if activity.has_type(
|
|
|
|
[ap.ActivityType.CREATE, ap.ActivityType.ANNOUNCE]
|
|
|
|
) and activity.get_object()._data.get("attachment", []):
|
2019-08-01 12:55:30 -05:00
|
|
|
Tasks.cache_attachments(iri)
|
|
|
|
|
|
|
|
except (ActivityGoneError, ActivityNotFoundError):
|
|
|
|
DB.activities.update_one({"remote_id": iri}, {"$set": {"meta.deleted": True}})
|
|
|
|
app.logger.exception(f"flagging activity {iri} as deleted, no actor caching")
|
|
|
|
except Exception as err:
|
|
|
|
app.logger.exception(f"failed to cache actor for {iri}")
|
|
|
|
raise TaskError() from err
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
2019-08-11 05:07:30 -05:00
|
|
|
@blueprint.route("/task/cache_actor_icon", methods=["POST"])
|
|
|
|
def task_cache_actor_icon() -> _Response:
|
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
|
|
|
actor_iri = task.payload["actor_iri"]
|
|
|
|
icon_url = task.payload["icon_url"]
|
|
|
|
try:
|
|
|
|
MEDIA_CACHE.cache_actor_icon(icon_url)
|
|
|
|
except Exception as exc:
|
|
|
|
err = f"failed to cache actor icon {icon_url} for {actor_iri}"
|
|
|
|
app.logger.exception(err)
|
|
|
|
raise TaskError() from exc
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
2019-08-01 12:55:30 -05:00
|
|
|
@blueprint.route("/task/forward_activity", methods=["POST"])
|
2019-08-04 09:34:30 -05:00
|
|
|
def task_forward_activity() -> _Response:
|
2019-08-01 12:55:30 -05:00
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
|
|
|
iri = task.payload
|
|
|
|
try:
|
|
|
|
activity = ap.fetch_remote_activity(iri)
|
|
|
|
recipients = back.followers_as_recipients()
|
|
|
|
app.logger.debug(f"Forwarding {activity!r} to {recipients}")
|
|
|
|
activity = ap.clean_activity(activity.to_dict())
|
|
|
|
payload = json.dumps(activity)
|
|
|
|
for recp in recipients:
|
|
|
|
app.logger.debug(f"forwarding {activity!r} to {recp}")
|
|
|
|
Tasks.post_to_remote_inbox(payload, recp)
|
|
|
|
except Exception as err:
|
|
|
|
app.logger.exception("task failed")
|
|
|
|
raise TaskError() from err
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route("/task/post_to_remote_inbox", methods=["POST"])
|
2019-08-04 09:34:30 -05:00
|
|
|
def task_post_to_remote_inbox() -> _Response:
|
2019-08-01 12:55:30 -05:00
|
|
|
"""Post an activity to a remote inbox."""
|
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
|
|
|
payload, to = task.payload["payload"], task.payload["to"]
|
|
|
|
try:
|
|
|
|
app.logger.info("payload=%s", payload)
|
|
|
|
app.logger.info("generating sig")
|
|
|
|
signed_payload = json.loads(payload)
|
|
|
|
|
|
|
|
app.logger.info("to=%s", to)
|
|
|
|
resp = requests.post(
|
|
|
|
to,
|
|
|
|
data=json.dumps(signed_payload),
|
|
|
|
auth=SIG_AUTH,
|
|
|
|
headers={
|
|
|
|
"Content-Type": config.HEADERS[1],
|
|
|
|
"Accept": config.HEADERS[1],
|
|
|
|
"User-Agent": config.USER_AGENT,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
app.logger.info("resp=%s", resp)
|
|
|
|
app.logger.info("resp_body=%s", resp.text)
|
|
|
|
resp.raise_for_status()
|
|
|
|
except HTTPError as err:
|
2019-08-07 16:27:57 -05:00
|
|
|
track_failed_send(to)
|
|
|
|
|
2019-08-01 12:55:30 -05:00
|
|
|
app.logger.exception("request failed")
|
|
|
|
if 400 >= err.response.status_code >= 499:
|
|
|
|
app.logger.info("client error, no retry")
|
|
|
|
return ""
|
|
|
|
|
|
|
|
raise TaskError() from err
|
2019-08-07 16:27:57 -05:00
|
|
|
except requests.RequestException:
|
|
|
|
track_failed_send(to)
|
|
|
|
|
|
|
|
app.logger.exception("request failed")
|
|
|
|
|
2019-08-01 12:55:30 -05:00
|
|
|
except Exception as err:
|
|
|
|
app.logger.exception("task failed")
|
|
|
|
raise TaskError() from err
|
|
|
|
|
2019-08-07 16:27:57 -05:00
|
|
|
track_successful_send(to)
|
|
|
|
|
2019-08-01 12:55:30 -05:00
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route("/task/fetch_remote_question", methods=["POST"])
|
2019-08-04 09:34:30 -05:00
|
|
|
def task_fetch_remote_question() -> _Response:
|
2019-08-01 12:55:30 -05:00
|
|
|
"""Fetch a remote question for implementation that does not send Update."""
|
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
|
|
|
iri = task.payload
|
|
|
|
try:
|
|
|
|
app.logger.info(f"Fetching remote question {iri}")
|
|
|
|
local_question = DB.activities.find_one(
|
|
|
|
{
|
|
|
|
"box": Box.INBOX.value,
|
|
|
|
"type": ap.ActivityType.CREATE.value,
|
|
|
|
"activity.object.id": iri,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
remote_question = ap.get_backend().fetch_iri(iri, no_cache=True)
|
|
|
|
# FIXME(tsileo): compute and set `meta.object_visiblity` (also update utils.py to do it)
|
|
|
|
if (
|
|
|
|
local_question
|
|
|
|
and (
|
|
|
|
local_question["meta"].get("voted_for")
|
|
|
|
or local_question["meta"].get("subscribed")
|
|
|
|
)
|
|
|
|
and not DB.notifications.find_one({"activity.id": remote_question["id"]})
|
|
|
|
):
|
|
|
|
DB.notifications.insert_one(
|
|
|
|
{
|
|
|
|
"type": "question_ended",
|
|
|
|
"datetime": datetime.now(timezone.utc).isoformat(),
|
|
|
|
"activity": remote_question,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
# Update the Create if we received it in the inbox
|
|
|
|
if local_question:
|
|
|
|
DB.activities.update_one(
|
|
|
|
{"remote_id": local_question["remote_id"], "box": Box.INBOX.value},
|
|
|
|
{"$set": {"activity.object": remote_question}},
|
|
|
|
)
|
|
|
|
|
|
|
|
# Also update all the cached copies (Like, Announce...)
|
|
|
|
DB.activities.update_many(
|
|
|
|
{"meta.object.id": remote_question["id"]},
|
|
|
|
{"$set": {"meta.object": remote_question}},
|
|
|
|
)
|
|
|
|
|
|
|
|
except HTTPError as err:
|
|
|
|
app.logger.exception("request failed")
|
|
|
|
if 400 >= err.response.status_code >= 499:
|
|
|
|
app.logger.info("client error, no retry")
|
|
|
|
return ""
|
|
|
|
|
|
|
|
raise TaskError() from err
|
|
|
|
except Exception as err:
|
|
|
|
app.logger.exception("task failed")
|
|
|
|
raise TaskError() from err
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route("/task/cleanup", methods=["POST"])
|
2019-08-04 09:34:30 -05:00
|
|
|
def task_cleanup() -> _Response:
|
2019-08-01 12:55:30 -05:00
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
2019-08-01 14:44:35 -05:00
|
|
|
gc.perform()
|
2019-08-01 12:55:30 -05:00
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route("/task/process_new_activity", methods=["POST"]) # noqa:c901
|
2019-08-04 09:34:30 -05:00
|
|
|
def task_process_new_activity() -> _Response:
|
2019-08-01 12:55:30 -05:00
|
|
|
"""Process an activity received in the inbox"""
|
|
|
|
task = p.parse(flask.request)
|
|
|
|
app.logger.info(f"task={task!r}")
|
|
|
|
iri = task.payload
|
|
|
|
try:
|
|
|
|
activity = ap.fetch_remote_activity(iri)
|
|
|
|
app.logger.info(f"activity={activity!r}")
|
|
|
|
|
|
|
|
flags = {}
|
|
|
|
|
|
|
|
if not activity.published:
|
2019-08-10 04:47:50 -05:00
|
|
|
flags.update(flag(MetaKey.PUBLISHED, now()))
|
2019-08-01 12:55:30 -05:00
|
|
|
else:
|
2019-08-10 04:47:50 -05:00
|
|
|
flags.update(flag(MetaKey.PUBLISHED, activity.published))
|
2019-08-01 12:55:30 -05:00
|
|
|
|
|
|
|
set_inbox_flags(activity, flags)
|
|
|
|
app.logger.info(f"a={activity}, flags={flags!r}")
|
|
|
|
if flags:
|
|
|
|
DB.activities.update_one({"remote_id": activity.id}, {"$set": flags})
|
|
|
|
|
|
|
|
app.logger.info(f"new activity {iri} processed")
|
|
|
|
if not activity.has_type(ap.ActivityType.DELETE):
|
|
|
|
Tasks.cache_actor(iri)
|
|
|
|
except (ActivityGoneError, ActivityNotFoundError):
|
|
|
|
app.logger.exception(f"dropping activity {iri}, skip processing")
|
|
|
|
return ""
|
|
|
|
except Exception as err:
|
|
|
|
app.logger.exception(f"failed to process new activity {iri}")
|
|
|
|
raise TaskError() from err
|
|
|
|
|
|
|
|
return ""
|