forked from mirrors/bookwyrm
34 lines
1,006 B
Python
34 lines
1,006 B
Python
""" Re-create user streams """
|
|
from django.core.management.base import BaseCommand
|
|
from bookwyrm import lists_stream, models
|
|
|
|
|
|
def populate_lists_streams():
|
|
"""build all the lists streams for all the users"""
|
|
print("Populating lists streams")
|
|
users = models.User.objects.filter(
|
|
local=True,
|
|
is_active=True,
|
|
).order_by("-last_active_date")
|
|
print("This may take a long time! Please be patient.")
|
|
for user in users:
|
|
print(".", end="")
|
|
lists_stream.populate_lists_stream_task.delay(user.id)
|
|
|
|
|
|
class Command(BaseCommand):
|
|
"""start all over with user streams"""
|
|
|
|
help = "Populate streams for all users"
|
|
|
|
def add_arguments(self, parser):
|
|
parser.add_argument(
|
|
"--stream",
|
|
default=None,
|
|
help="Specifies which time of stream to populate",
|
|
)
|
|
|
|
# pylint: disable=no-self-use,unused-argument
|
|
def handle(self, *args, **options):
|
|
"""run feed builder"""
|
|
populate_lists_streams()
|