mirror of https://github.com/zulip/zulip.git
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
|
|
from typing import Any
|
|
|
|
from django.core.management.base import CommandParser
|
|
from django.utils.timezone import utc as timezone_utc
|
|
from zerver.models import Message, Stream, Recipient
|
|
from zerver.lib.management import ZulipBaseCommand
|
|
|
|
import datetime
|
|
import time
|
|
|
|
class Command(ZulipBaseCommand):
|
|
help = "Dump messages from public streams of a realm"
|
|
|
|
def add_arguments(self, parser):
|
|
# type: (CommandParser) -> None
|
|
default_cutoff = time.time() - 60 * 60 * 24 * 30 # 30 days.
|
|
self.add_realm_args(parser, True)
|
|
parser.add_argument('--since',
|
|
dest='since',
|
|
type=int,
|
|
default=default_cutoff,
|
|
help='The time in epoch since from which to start the dump.')
|
|
|
|
def handle(self, *args, **options):
|
|
# type: (*Any, **Any) -> None
|
|
realm = self.get_realm(options)
|
|
streams = Stream.objects.filter(realm=realm, invite_only=False)
|
|
recipients = Recipient.objects.filter(
|
|
type=Recipient.STREAM, type_id__in=[stream.id for stream in streams])
|
|
cutoff = datetime.datetime.fromtimestamp(options["since"], tz=timezone_utc)
|
|
messages = Message.objects.filter(pub_date__gt=cutoff, recipient__in=recipients)
|
|
|
|
for message in messages:
|
|
print(message.to_dict(False))
|