2019-11-16 01:29:16 +01:00
|
|
|
from argparse import ArgumentParser
|
2020-04-11 13:15:57 +02:00
|
|
|
from typing import Any
|
2019-11-16 01:29:16 +01:00
|
|
|
|
2021-05-19 22:42:49 +02:00
|
|
|
from django.conf import settings
|
2021-07-16 22:11:10 +02:00
|
|
|
from django.core.management.base import CommandError
|
2021-05-19 22:42:49 +02:00
|
|
|
|
2021-07-16 22:11:10 +02:00
|
|
|
from zerver.lib.management import ZulipBaseCommand
|
2020-04-11 13:15:57 +02:00
|
|
|
from zerver.lib.send_email import send_custom_email
|
2021-04-28 01:23:44 +02:00
|
|
|
from zerver.models import Realm, UserProfile
|
2019-11-16 01:29:16 +01:00
|
|
|
|
2020-01-14 21:59:46 +01:00
|
|
|
|
2019-11-16 01:29:16 +01:00
|
|
|
class Command(ZulipBaseCommand):
|
2020-04-14 19:55:04 +02:00
|
|
|
help = """
|
|
|
|
Send a custom email with Zulip branding to the specified users.
|
|
|
|
|
|
|
|
Useful to send a notice to all users of a realm or server.
|
|
|
|
|
2020-08-11 01:47:49 +02:00
|
|
|
The From and Subject headers can be provided in the body of the Markdown
|
2020-04-14 19:55:04 +02:00
|
|
|
document used to generate the email, or on the command line."""
|
2019-11-16 01:29:16 +01:00
|
|
|
|
|
|
|
def add_arguments(self, parser: ArgumentParser) -> None:
|
2021-02-12 08:19:30 +01:00
|
|
|
parser.add_argument(
|
2021-02-12 08:20:45 +01:00
|
|
|
"--entire-server", action="store_true", help="Send to every user on the server."
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2021-04-28 01:23:44 +02:00
|
|
|
parser.add_argument(
|
|
|
|
"--all-sponsored-org-admins",
|
|
|
|
action="store_true",
|
|
|
|
help="Send to all organization administrators of sponsored organizations.",
|
|
|
|
)
|
2021-08-02 06:35:01 +02:00
|
|
|
parser.add_argument(
|
|
|
|
"--marketing",
|
|
|
|
action="store_true",
|
|
|
|
help="Send to active users and realm owners with the enable_marketing_emails setting enabled.",
|
|
|
|
)
|
2021-02-12 08:19:30 +01:00
|
|
|
parser.add_argument(
|
2021-02-12 08:20:45 +01:00
|
|
|
"--markdown-template-path",
|
|
|
|
"--path",
|
2021-02-12 08:19:30 +01:00
|
|
|
required=True,
|
2021-02-12 08:20:45 +01:00
|
|
|
help="Path to a Markdown-format body for the email.",
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
2021-02-12 08:20:45 +01:00
|
|
|
"--subject",
|
|
|
|
help="Subject for the email. It can be declared in Markdown file in headers",
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
2021-02-12 08:20:45 +01:00
|
|
|
"--from-name",
|
|
|
|
help="From line for the email. It can be declared in Markdown file in headers",
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2021-02-12 08:20:45 +01:00
|
|
|
parser.add_argument("--reply-to", help="Optional reply-to line for the email")
|
2021-02-12 08:19:30 +01:00
|
|
|
parser.add_argument(
|
2021-02-12 08:20:45 +01:00
|
|
|
"--admins-only", help="Send only to organization administrators", action="store_true"
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2021-04-07 01:27:02 +02:00
|
|
|
parser.add_argument(
|
|
|
|
"--dry-run",
|
|
|
|
action="store_true",
|
|
|
|
help="Prints emails of the recipients and text of the email.",
|
|
|
|
)
|
2021-02-12 08:19:30 +01:00
|
|
|
|
|
|
|
self.add_user_list_args(
|
|
|
|
parser,
|
|
|
|
help="Email addresses of user(s) to send emails to.",
|
|
|
|
all_users_help="Send to every user on the realm.",
|
|
|
|
)
|
2019-11-16 01:29:16 +01:00
|
|
|
self.add_realm_args(parser)
|
|
|
|
|
|
|
|
def handle(self, *args: Any, **options: str) -> None:
|
|
|
|
if options["entire_server"]:
|
2021-04-28 01:23:44 +02:00
|
|
|
users = UserProfile.objects.filter(
|
|
|
|
is_active=True, is_bot=False, is_mirror_dummy=False, realm__deactivated=False
|
|
|
|
)
|
2021-08-02 06:35:01 +02:00
|
|
|
elif options["marketing"]:
|
|
|
|
# Marketing email sent at most once to each email address for users
|
2021-08-05 19:14:22 +02:00
|
|
|
# who are recently active (!long_term_idle) users of the product.
|
|
|
|
users = UserProfile.objects.filter(
|
|
|
|
is_active=True,
|
|
|
|
is_bot=False,
|
|
|
|
is_mirror_dummy=False,
|
|
|
|
realm__deactivated=False,
|
|
|
|
enable_marketing_emails=True,
|
|
|
|
long_term_idle=False,
|
|
|
|
).distinct("delivery_email")
|
2021-04-28 01:23:44 +02:00
|
|
|
elif options["all_sponsored_org_admins"]:
|
|
|
|
# Sends at most one copy to each email address, even if it
|
|
|
|
# is an administrator in several organizations.
|
|
|
|
sponsored_realms = Realm.objects.filter(
|
|
|
|
plan_type=Realm.STANDARD_FREE, deactivated=False
|
|
|
|
)
|
|
|
|
admin_roles = [UserProfile.ROLE_REALM_ADMINISTRATOR, UserProfile.ROLE_REALM_OWNER]
|
|
|
|
users = UserProfile.objects.filter(
|
|
|
|
is_active=True,
|
|
|
|
is_bot=False,
|
|
|
|
is_mirror_dummy=False,
|
|
|
|
role__in=admin_roles,
|
|
|
|
realm__deactivated=False,
|
|
|
|
realm__in=sponsored_realms,
|
|
|
|
).distinct("delivery_email")
|
2019-11-16 01:29:16 +01:00
|
|
|
else:
|
|
|
|
realm = self.get_realm(options)
|
|
|
|
try:
|
|
|
|
users = self.get_users(options, realm, is_bot=False)
|
|
|
|
except CommandError as error:
|
|
|
|
if str(error) == "You have to pass either -u/--users or -a/--all-users.":
|
2021-02-12 08:19:30 +01:00
|
|
|
raise CommandError(
|
|
|
|
"You have to pass -u/--users or -a/--all-users or --entire-server."
|
|
|
|
)
|
2019-11-16 01:29:16 +01:00
|
|
|
raise error
|
|
|
|
|
2021-05-19 22:42:49 +02:00
|
|
|
# Only email users who've agreed to the terms of service.
|
|
|
|
if settings.TOS_VERSION is not None:
|
2021-08-02 16:11:19 +02:00
|
|
|
# We need to do a new query because the `get_users` path
|
|
|
|
# passes us a list rather than a QuerySet.
|
|
|
|
users = (
|
|
|
|
UserProfile.objects.select_related()
|
|
|
|
.filter(id__in=[u.id for u in users])
|
|
|
|
.exclude(tos_version=None)
|
|
|
|
)
|
2019-11-16 01:29:16 +01:00
|
|
|
send_custom_email(users, options)
|
2021-04-07 01:27:02 +02:00
|
|
|
|
|
|
|
if options["dry_run"]:
|
|
|
|
print("Would send the above email to:")
|
|
|
|
for user in users:
|
2021-04-28 01:25:56 +02:00
|
|
|
print(f" {user.delivery_email} ({user.realm.string_id})")
|