mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 11:26:56 -08:00
Consolidate retrieve_mods_and_backfill() functions to support outbox processing for lemmy, peertube, and wordpress
This commit is contained in:
parent
5bf0ddc32a
commit
1654dcea0b
1 changed files with 139 additions and 131 deletions
|
@ -10,9 +10,9 @@ from flask_login import current_user
|
||||||
from pillow_heif import register_heif_opener
|
from pillow_heif import register_heif_opener
|
||||||
|
|
||||||
from app import db, cache, celery
|
from app import db, cache, celery
|
||||||
from app.activitypub.signature import post_request, default_context
|
from app.activitypub.signature import post_request, default_context, signed_get_request
|
||||||
from app.activitypub.util import find_actor_or_create, actor_json_to_model, post_json_to_model, ensure_domains_match, \
|
from app.activitypub.util import find_actor_or_create, actor_json_to_model, post_json_to_model, ensure_domains_match, \
|
||||||
find_hashtag_or_create
|
find_hashtag_or_create, create_post
|
||||||
from app.constants import POST_TYPE_ARTICLE, POST_TYPE_LINK, POST_TYPE_IMAGE, POST_TYPE_VIDEO, NOTIF_POST, \
|
from app.constants import POST_TYPE_ARTICLE, POST_TYPE_LINK, POST_TYPE_IMAGE, POST_TYPE_VIDEO, NOTIF_POST, \
|
||||||
POST_TYPE_POLL
|
POST_TYPE_POLL
|
||||||
from app.models import Community, File, BannedInstances, PostReply, Post, utcnow, CommunityMember, Site, \
|
from app.models import Community, File, BannedInstances, PostReply, Post, utcnow, CommunityMember, Site, \
|
||||||
|
@ -71,159 +71,167 @@ def search_for_community(address: str):
|
||||||
if community_json['type'] == 'Group':
|
if community_json['type'] == 'Group':
|
||||||
community = actor_json_to_model(community_json, name, server)
|
community = actor_json_to_model(community_json, name, server)
|
||||||
if community:
|
if community:
|
||||||
if community.ap_profile_id == f"https://{server}/video-channels/{name}":
|
|
||||||
if current_app.debug:
|
|
||||||
retrieve_peertube_mods_and_backfill(community.id, community_json['attributedTo'])
|
|
||||||
else:
|
|
||||||
retrieve_peertube_mods_and_backfill.delay(community.id, community_json['attributedTo'])
|
|
||||||
return community
|
|
||||||
if current_app.debug:
|
if current_app.debug:
|
||||||
retrieve_mods_and_backfill(community.id)
|
retrieve_mods_and_backfill(community.id, server, name, community_json)
|
||||||
else:
|
else:
|
||||||
retrieve_mods_and_backfill.delay(community.id)
|
retrieve_mods_and_backfill.delay(community.id, server, name, community_json)
|
||||||
return community
|
return community
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
@celery.task
|
def remote_object_to_json(uri):
|
||||||
def retrieve_peertube_mods_and_backfill(community_id: int, mods: list):
|
try:
|
||||||
community = Community.query.get(community_id)
|
object_request = get_request(uri, headers={'Accept': 'application/activity+json'})
|
||||||
site = Site.query.get(1)
|
except httpx.HTTPError:
|
||||||
for m in mods:
|
time.sleep(3)
|
||||||
user = find_actor_or_create(m['id'])
|
try:
|
||||||
if user:
|
object_request = get_request(uri, headers={'Accept': 'application/activity+json'})
|
||||||
existing_membership = CommunityMember.query.filter_by(community_id=community.id, user_id=user.id).first()
|
except httpx.HTTPError:
|
||||||
if existing_membership:
|
return None
|
||||||
existing_membership.is_moderator = True
|
if object_request.status_code == 200:
|
||||||
else:
|
try:
|
||||||
new_membership = CommunityMember(community_id=community.id, user_id=user.id, is_moderator=True)
|
object = object_request.json()
|
||||||
db.session.add(new_membership)
|
return object
|
||||||
community.restricted_to_mods = True
|
except:
|
||||||
db.session.commit()
|
object_request.close()
|
||||||
|
return None
|
||||||
if community.ap_public_url:
|
object_request.close()
|
||||||
outbox_request = get_request(community.ap_outbox_url, headers={'Accept': 'application/activity+json'})
|
elif object_request.status_code == 401:
|
||||||
if outbox_request.status_code == 200:
|
try:
|
||||||
outbox_data = outbox_request.json()
|
site = Site.query.get(1)
|
||||||
outbox_request.close()
|
object_request = signed_get_request(uri, site.private_key, f"https://{current_app.config['SERVER_NAME']}/actor#main-key")
|
||||||
if 'totalItems' in outbox_data and outbox_data['totalItems'] > 0:
|
except httpx.HTTPError:
|
||||||
page1_request = get_request(outbox_data['first'], headers={'Accept': 'application/activity+json'})
|
time.sleep(3)
|
||||||
if page1_request.status_code == 200:
|
try:
|
||||||
page1_data = page1_request.json()
|
object_request = signed_get_request(uri, site.private_key, f"https://{current_app.config['SERVER_NAME']}/actor#main-key")
|
||||||
page1_request.close()
|
except httpx.HTTPError:
|
||||||
if 'type' in page1_data and page1_data['type'] == 'OrderedCollectionPage' and 'orderedItems' in page1_data:
|
return None
|
||||||
# only 10 posts per page for PeerTube
|
try:
|
||||||
for activity in page1_data['orderedItems']:
|
object = object_request.json()
|
||||||
video_request = get_request(activity['object'], headers={'Accept': 'application/activity+json'})
|
return object
|
||||||
if video_request.status_code == 200:
|
except:
|
||||||
video_data = video_request.json()
|
object_request.close()
|
||||||
video_request.close()
|
return None
|
||||||
activity_log = ActivityPubLog(direction='in', activity_id=video_data['id'], activity_type='Video', result='failure')
|
object_request.close()
|
||||||
if site.log_activitypub_json:
|
else:
|
||||||
activity_log.activity_json = json.dumps(video_data)
|
return None
|
||||||
db.session.add(activity_log)
|
|
||||||
if not ensure_domains_match(video_data):
|
|
||||||
activity_log.exception_message = 'Domains do not match'
|
|
||||||
db.session.commit()
|
|
||||||
continue
|
|
||||||
if user and user.is_local():
|
|
||||||
activity_log.exception_message = 'Activity about local content which is already present'
|
|
||||||
db.session.commit()
|
|
||||||
continue
|
|
||||||
if user:
|
|
||||||
post = post_json_to_model(activity_log, video_data, user, community)
|
|
||||||
post.ap_announce_id = activity['id']
|
|
||||||
post.ranking = post.post_ranking(post.score, post.posted_at)
|
|
||||||
else:
|
|
||||||
activity_log.exception_message = 'Could not find or create actor'
|
|
||||||
db.session.commit()
|
|
||||||
if community.post_count > 0:
|
|
||||||
community.last_active = Post.query.filter(Post.community_id == community_id).order_by(desc(Post.posted_at)).first().posted_at
|
|
||||||
db.session.commit()
|
|
||||||
|
|
||||||
|
|
||||||
@celery.task
|
@celery.task
|
||||||
def retrieve_mods_and_backfill(community_id: int):
|
def retrieve_mods_and_backfill(community_id: int, server, name, community_json=None):
|
||||||
with current_app.app_context():
|
with current_app.app_context():
|
||||||
community = Community.query.get(community_id)
|
community = Community.query.get(community_id)
|
||||||
|
if not community:
|
||||||
|
return
|
||||||
site = Site.query.get(1)
|
site = Site.query.get(1)
|
||||||
if community.ap_moderators_url:
|
|
||||||
mods_request = get_request(community.ap_moderators_url, headers={'Accept': 'application/activity+json'})
|
is_peertube = is_guppe = is_wordpress = False
|
||||||
if mods_request.status_code == 200:
|
if community.ap_profile_id == f"https://{server}/video-channels/{name}":
|
||||||
mods_data = mods_request.json()
|
is_peertube = True
|
||||||
mods_request.close()
|
elif community.ap_profile_id.startswith('https://a.gup.pe/u'):
|
||||||
if mods_data and mods_data['type'] == 'OrderedCollection' and 'orderedItems' in mods_data:
|
is_guppe = True
|
||||||
for actor in mods_data['orderedItems']:
|
|
||||||
sleep(0.5)
|
# get mods
|
||||||
user = find_actor_or_create(actor)
|
if community_json and 'attributedTo' in community_json:
|
||||||
if user:
|
mods = community_json['attributedTo']
|
||||||
existing_membership = CommunityMember.query.filter_by(community_id=community.id, user_id=user.id).first()
|
if isinstance(mods, list):
|
||||||
|
for m in mods:
|
||||||
|
if 'type' in m and m['type'] == 'Person' and 'id' in m:
|
||||||
|
mod = find_actor_or_create(m['id'])
|
||||||
|
if mod:
|
||||||
|
existing_membership = CommunityMember.query.filter_by(community_id=community.id, user_id=mod.id).first()
|
||||||
if existing_membership:
|
if existing_membership:
|
||||||
existing_membership.is_moderator = True
|
existing_membership.is_moderator = True
|
||||||
else:
|
else:
|
||||||
new_membership = CommunityMember(community_id=community.id, user_id=user.id, is_moderator=True)
|
new_membership = CommunityMember(community_id=community.id, user_id=mod.id, is_moderator=True)
|
||||||
db.session.add(new_membership)
|
db.session.add(new_membership)
|
||||||
db.session.commit()
|
elif community.ap_moderators_url:
|
||||||
|
mods_data = remote_object_to_json(community.ap_moderators_url)
|
||||||
|
if mods_data and mods_data['type'] == 'OrderedCollection' and 'orderedItems' in mods_data:
|
||||||
|
for actor in mods_data['orderedItems']:
|
||||||
|
sleep(0.5)
|
||||||
|
mod = find_actor_or_create(actor)
|
||||||
|
if mod:
|
||||||
|
existing_membership = CommunityMember.query.filter_by(community_id=community.id, user_id=mod.id).first()
|
||||||
|
if existing_membership:
|
||||||
|
existing_membership.is_moderator = True
|
||||||
|
else:
|
||||||
|
new_membership = CommunityMember(community_id=community.id, user_id=mod.id, is_moderator=True)
|
||||||
|
db.session.add(new_membership)
|
||||||
|
if is_peertube:
|
||||||
|
community.restricted_to_mods = True
|
||||||
|
db.session.commit()
|
||||||
|
|
||||||
# only backfill nsfw if nsfw communities are allowed
|
# only backfill nsfw if nsfw communities are allowed
|
||||||
if (community.nsfw and not site.enable_nsfw) or (community.nsfl and not site.enable_nsfl):
|
if (community.nsfw and not site.enable_nsfw) or (community.nsfl and not site.enable_nsfl):
|
||||||
return
|
return
|
||||||
|
|
||||||
# download 50 old posts
|
# download 50 old posts from unpaginated outboxes or 10 posts from page 1 if outbox is paginated (with Celery, or just 2 without)
|
||||||
if community.ap_outbox_url:
|
if community.ap_outbox_url:
|
||||||
outbox_request = get_request(community.ap_outbox_url, headers={'Accept': 'application/activity+json'})
|
outbox_data = remote_object_to_json(community.ap_outbox_url)
|
||||||
if outbox_request.status_code == 200:
|
if not outbox_data or ('totalItems' in outbox_data and outbox_data['totalItems'] == 0):
|
||||||
outbox_data = outbox_request.json()
|
return
|
||||||
outbox_request.close()
|
if 'first' in outbox_data:
|
||||||
if 'type' in outbox_data and outbox_data['type'] == 'OrderedCollection' and 'orderedItems' in outbox_data:
|
outbox_data = remote_object_to_json(outbox_data['first'])
|
||||||
activities_processed = 0
|
if not outbox_data:
|
||||||
for activity in outbox_data['orderedItems']:
|
return
|
||||||
activity_log = ActivityPubLog(direction='in', activity_id=activity['id'], activity_type='Announce', result='failure')
|
max = 10
|
||||||
if site.log_activitypub_json:
|
else:
|
||||||
activity_log.activity_json = json.dumps(activity)
|
max = 50
|
||||||
db.session.add(activity_log)
|
if current_app.debug:
|
||||||
if 'object' in activity and 'object' in activity['object']:
|
max = 2
|
||||||
if not ensure_domains_match(activity['object']['object']):
|
if 'type' in outbox_data and (outbox_data['type'] == 'OrderedCollection' or outbox_data['type'] == 'OrderedCollectionPage') and 'orderedItems' in outbox_data:
|
||||||
activity_log.exception_message = 'Domains do not match'
|
activities_processed = 0
|
||||||
db.session.commit()
|
for announce in outbox_data['orderedItems']:
|
||||||
continue
|
activity = None
|
||||||
user = find_actor_or_create(activity['object']['actor'])
|
if is_peertube or is_guppe:
|
||||||
if user and user.is_local():
|
activity = remote_object_to_json(announce['object'])
|
||||||
activity_log.exception_message = 'Activity about local content which is already present'
|
elif 'object' in announce and 'object' in announce['object']:
|
||||||
db.session.commit()
|
activity = announce['object']['object']
|
||||||
continue
|
elif 'type' in announce and announce['type'] == 'Create':
|
||||||
if user:
|
activity = announce['object']
|
||||||
post = post_json_to_model(activity_log, activity['object']['object'], user, community)
|
is_wordpress = True
|
||||||
if post:
|
if not activity:
|
||||||
post.ap_create_id = activity['object']['id']
|
return
|
||||||
post.ap_announce_id = activity['id']
|
if not ensure_domains_match(activity):
|
||||||
post.ranking = post.post_ranking(post.score, post.posted_at)
|
continue
|
||||||
if post.url:
|
if is_peertube:
|
||||||
post.calculate_cross_posts()
|
user = mod
|
||||||
db.session.commit()
|
elif 'attributedTo' in activity and isinstance(activity['attributedTo'], str):
|
||||||
else:
|
user = find_actor_or_create(activity['attributedTo'])
|
||||||
activity_log.exception_message = 'Could not find or create actor'
|
if not user:
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
continue
|
||||||
|
if user.is_local():
|
||||||
|
continue
|
||||||
|
if is_peertube or is_guppe:
|
||||||
|
request_json = {'id': f"https://{server}/activities/create/{gibberish(15)}", 'object': activity}
|
||||||
|
elif is_wordpress:
|
||||||
|
request_json = announce
|
||||||
|
else:
|
||||||
|
request_json = announce['object']
|
||||||
|
post = create_post(True, community, request_json, user, announce['id'])
|
||||||
|
if post:
|
||||||
|
if 'published' in activity:
|
||||||
|
post.posted_at = activity['published']
|
||||||
|
post.last_active = activity['published']
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
|
activities_processed += 1
|
||||||
activities_processed += 1
|
if activities_processed >= max:
|
||||||
if activities_processed >= 50:
|
break
|
||||||
break
|
if community.post_count > 0:
|
||||||
c = Community.query.get(community.id)
|
community.last_active = Post.query.filter(Post.community_id == community.id).order_by(desc(Post.posted_at)).first().posted_at
|
||||||
if c.post_count > 0:
|
|
||||||
c.last_active = Post.query.filter(Post.community_id == community_id).order_by(desc(Post.posted_at)).first().posted_at
|
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
if community.ap_featured_url:
|
if community.ap_featured_url:
|
||||||
featured_request = get_request(community.ap_featured_url, headers={'Accept': 'application/activity+json'})
|
featured_data = remote_object_to_json(community.ap_featured_url)
|
||||||
if featured_request.status_code == 200:
|
if featured_data and 'type' in featured_data and featured_data['type'] == 'OrderedCollection' and 'orderedItems' in featured_data:
|
||||||
featured_data = featured_request.json()
|
for item in featured_data['orderedItems']:
|
||||||
featured_request.close()
|
featured_id = item['id']
|
||||||
if featured_data['type'] == 'OrderedCollection' and 'orderedItems' in featured_data:
|
p = Post.query.filter(Post.ap_id == featured_id).first()
|
||||||
for item in featured_data['orderedItems']:
|
if p:
|
||||||
featured_id = item['id']
|
p.sticky = True
|
||||||
p = Post.query.filter(Post.ap_id == featured_id).first()
|
db.session.commit()
|
||||||
if p:
|
|
||||||
p.sticky = True
|
|
||||||
db.session.commit()
|
|
||||||
|
|
||||||
|
|
||||||
def actor_to_community(actor) -> Community:
|
def actor_to_community(actor) -> Community:
|
||||||
|
|
Loading…
Reference in a new issue