2017-11-16 00:43:27 +01:00
|
|
|
import datetime
|
|
|
|
import time
|
2016-06-04 16:52:18 +02:00
|
|
|
from typing import Any
|
|
|
|
|
2017-08-07 17:40:28 +02:00
|
|
|
from django.core.management.base import CommandParser
|
2013-08-13 23:30:57 +02:00
|
|
|
|
2017-11-16 00:43:27 +01:00
|
|
|
from zerver.lib.management import ZulipBaseCommand
|
|
|
|
from zerver.models import Message, Recipient, Stream
|
2013-08-13 23:30:57 +02:00
|
|
|
|
2020-01-14 21:59:46 +01:00
|
|
|
|
2017-08-07 17:40:28 +02:00
|
|
|
class Command(ZulipBaseCommand):
|
|
|
|
help = "Dump messages from public streams of a realm"
|
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def add_arguments(self, parser: CommandParser) -> None:
|
2017-05-07 17:14:53 +02:00
|
|
|
default_cutoff = time.time() - 60 * 60 * 24 * 30 # 30 days.
|
2017-08-07 17:40:28 +02:00
|
|
|
self.add_realm_args(parser, True)
|
2021-02-12 08:19:30 +01:00
|
|
|
parser.add_argument(
|
2021-02-12 08:20:45 +01:00
|
|
|
"--since",
|
2021-02-12 08:19:30 +01:00
|
|
|
type=int,
|
|
|
|
default=default_cutoff,
|
2021-02-12 08:20:45 +01:00
|
|
|
help="The time in epoch since from which to start the dump.",
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2013-08-13 23:30:57 +02:00
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def handle(self, *args: Any, **options: Any) -> None:
|
2017-08-07 17:40:28 +02:00
|
|
|
realm = self.get_realm(options)
|
2013-08-13 23:30:57 +02:00
|
|
|
streams = Stream.objects.filter(realm=realm, invite_only=False)
|
|
|
|
recipients = Recipient.objects.filter(
|
2021-02-12 08:19:30 +01:00
|
|
|
type=Recipient.STREAM, type_id__in=[stream.id for stream in streams]
|
|
|
|
)
|
2020-06-05 06:55:20 +02:00
|
|
|
cutoff = datetime.datetime.fromtimestamp(options["since"], tz=datetime.timezone.utc)
|
2019-08-28 02:43:19 +02:00
|
|
|
messages = Message.objects.filter(date_sent__gt=cutoff, recipient__in=recipients)
|
2013-08-13 23:30:57 +02:00
|
|
|
|
|
|
|
for message in messages:
|
2015-11-01 17:11:06 +01:00
|
|
|
print(message.to_dict(False))
|