mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 21:43:21 +00:00
send_custom_email: Use a mutually-exclusive group for recipients.
This commit is contained in:
committed by
Tim Abbott
parent
ae51fbdda2
commit
6b25fab38c
@@ -1,6 +1,6 @@
|
|||||||
# Library code for use in management commands
|
# Library code for use in management commands
|
||||||
import logging
|
import logging
|
||||||
from argparse import ArgumentParser, RawTextHelpFormatter
|
from argparse import ArgumentParser, RawTextHelpFormatter, _ActionsContainer
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from typing import Any, Collection, Dict, Optional
|
from typing import Any, Collection, Dict, Optional
|
||||||
|
|
||||||
@@ -84,7 +84,7 @@ server via `ps -ef` or reading bash history. Prefer
|
|||||||
|
|
||||||
def add_user_list_args(
|
def add_user_list_args(
|
||||||
self,
|
self,
|
||||||
parser: ArgumentParser,
|
parser: _ActionsContainer,
|
||||||
help: str = "A comma-separated list of email addresses.",
|
help: str = "A comma-separated list of email addresses.",
|
||||||
all_users_help: str = "All users in realm.",
|
all_users_help: str = "All users in realm.",
|
||||||
) -> None:
|
) -> None:
|
||||||
|
|||||||
@@ -20,24 +20,41 @@ class Command(ZulipBaseCommand):
|
|||||||
document used to generate the email, or on the command line."""
|
document used to generate the email, or on the command line."""
|
||||||
|
|
||||||
def add_arguments(self, parser: ArgumentParser) -> None:
|
def add_arguments(self, parser: ArgumentParser) -> None:
|
||||||
parser.add_argument(
|
targets = parser.add_mutually_exclusive_group(required=True)
|
||||||
|
targets.add_argument(
|
||||||
"--entire-server", action="store_true", help="Send to every user on the server."
|
"--entire-server", action="store_true", help="Send to every user on the server."
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
targets.add_argument(
|
||||||
"--all-sponsored-org-admins",
|
|
||||||
action="store_true",
|
|
||||||
help="Send to all organization administrators of sponsored organizations.",
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
|
||||||
"--marketing",
|
"--marketing",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="Send to active users and realm owners with the enable_marketing_emails setting enabled.",
|
help="Send to active users and realm owners with the enable_marketing_emails setting enabled.",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
targets.add_argument(
|
||||||
"--remote-servers",
|
"--remote-servers",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="Send to registered contact email addresses for remote Zulip servers.",
|
help="Send to registered contact email addresses for remote Zulip servers.",
|
||||||
)
|
)
|
||||||
|
targets.add_argument(
|
||||||
|
"--all-sponsored-org-admins",
|
||||||
|
action="store_true",
|
||||||
|
help="Send to all organization administrators of sponsored organizations.",
|
||||||
|
)
|
||||||
|
self.add_user_list_args(
|
||||||
|
targets,
|
||||||
|
help="Email addresses of user(s) to send emails to.",
|
||||||
|
all_users_help="Send to every user on the realm.",
|
||||||
|
)
|
||||||
|
# Realm is only required for --users and --all-users, so it is
|
||||||
|
# not mutually exclusive with the rest of the above.
|
||||||
|
self.add_realm_args(parser)
|
||||||
|
|
||||||
|
# This is an additional filter which is composed with the above
|
||||||
|
parser.add_argument(
|
||||||
|
"--admins-only",
|
||||||
|
help="Filter recipients selected via other options to to only organization administrators",
|
||||||
|
action="store_true",
|
||||||
|
)
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--markdown-template-path",
|
"--markdown-template-path",
|
||||||
"--path",
|
"--path",
|
||||||
@@ -53,22 +70,13 @@ class Command(ZulipBaseCommand):
|
|||||||
help="From line for the email. It can be declared in Markdown file in headers",
|
help="From line for the email. It can be declared in Markdown file in headers",
|
||||||
)
|
)
|
||||||
parser.add_argument("--reply-to", help="Optional reply-to line for the email")
|
parser.add_argument("--reply-to", help="Optional reply-to line for the email")
|
||||||
parser.add_argument(
|
|
||||||
"--admins-only", help="Send only to organization administrators", action="store_true"
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--dry-run",
|
"--dry-run",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="Prints emails of the recipients and text of the email.",
|
help="Prints emails of the recipients and text of the email.",
|
||||||
)
|
)
|
||||||
|
|
||||||
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.",
|
|
||||||
)
|
|
||||||
self.add_realm_args(parser)
|
|
||||||
|
|
||||||
def handle(self, *args: Any, **options: str) -> None:
|
def handle(self, *args: Any, **options: str) -> None:
|
||||||
target_emails: List[str] = []
|
target_emails: List[str] = []
|
||||||
users: Collection[UserProfile] = []
|
users: Collection[UserProfile] = []
|
||||||
@@ -115,14 +123,7 @@ class Command(ZulipBaseCommand):
|
|||||||
).distinct("delivery_email")
|
).distinct("delivery_email")
|
||||||
else:
|
else:
|
||||||
realm = self.get_realm(options)
|
realm = self.get_realm(options)
|
||||||
try:
|
users = self.get_users(options, realm, is_bot=False)
|
||||||
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.":
|
|
||||||
raise CommandError(
|
|
||||||
"You have to pass -u/--users or -a/--all-users or --entire-server."
|
|
||||||
)
|
|
||||||
raise error
|
|
||||||
|
|
||||||
# Only email users who've agreed to the terms of service.
|
# Only email users who've agreed to the terms of service.
|
||||||
if settings.TERMS_OF_SERVICE_VERSION is not None:
|
if settings.TERMS_OF_SERVICE_VERSION is not None:
|
||||||
|
|||||||
Reference in New Issue
Block a user