mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-23 16:40:36 +00:00
Adds activity stream utility for adding and removing statuses
This commit is contained in:
parent
26fa81f19b
commit
39f34bc6e6
2 changed files with 22 additions and 1 deletions
|
@ -38,6 +38,27 @@ class ActivityStream(ABC):
|
||||||
# and go!
|
# and go!
|
||||||
pipeline.execute()
|
pipeline.execute()
|
||||||
|
|
||||||
|
def remove_status(self, status):
|
||||||
|
""" remove a status from all feeds """
|
||||||
|
pipeline = r.pipeline()
|
||||||
|
for user in self.stream_users(status):
|
||||||
|
pipeline.lrem(self.stream_id(user), -1, status.id)
|
||||||
|
pipeline.execute()
|
||||||
|
|
||||||
|
def add_user_statuses(self, user, viewer):
|
||||||
|
""" add a user's statuses to another user's feed """
|
||||||
|
pipeline = r.pipeline()
|
||||||
|
for status in user.status_set.objects.all()[: settings.MAX_STREAM_LENGTH]:
|
||||||
|
pipeline.lpush(self.stream_id(viewer), status.id)
|
||||||
|
pipeline.execute()
|
||||||
|
|
||||||
|
def remove_user_statuses(self, user, viewer):
|
||||||
|
""" remove a user's status from another user's feed """
|
||||||
|
pipeline = r.pipeline()
|
||||||
|
for status in user.status_set.objects.all()[: settings.MAX_STREAM_LENGTH]:
|
||||||
|
pipeline.lrem(self.stream_id(viewer), status.id)
|
||||||
|
pipeline.execute()
|
||||||
|
|
||||||
def get_activity_stream(self, user):
|
def get_activity_stream(self, user):
|
||||||
""" load the ids for statuses to be displayed """
|
""" load the ids for statuses to be displayed """
|
||||||
# clear unreads for this feed
|
# clear unreads for this feed
|
||||||
|
|
|
@ -62,7 +62,7 @@ class UserFollows(ActivityMixin, UserRelationship):
|
||||||
|
|
||||||
status = "follows"
|
status = "follows"
|
||||||
|
|
||||||
def to_activity(self):
|
def to_activity(self): # pylint: disable=arguments-differ
|
||||||
""" overrides default to manually set serializer """
|
""" overrides default to manually set serializer """
|
||||||
return activitypub.Follow(**generate_activity(self))
|
return activitypub.Follow(**generate_activity(self))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue