Add script to create new realms.

(imported from commit 764d41f28b1af10860ea4d03a6aa983f40d3ffd7)
This commit is contained in:
Luke Faraone
2012-11-21 16:31:42 -05:00
parent 724dce78e4
commit dad00fa29f

View File

@@ -0,0 +1,28 @@
from django.core.management.base import BaseCommand
from zephyr.models import Realm, Message, UserProfile, Recipient, create_stream_if_needed, \
get_client
from zephyr.views import do_send_message
from django.utils.timezone import now
class Command(BaseCommand):
help = "Create a realm for the specified domain(s)."
def handle(self, *args, **options):
for domain in args:
realm, created = Realm.objects.get_or_create(domain=domain)
if not created:
print domain + ": Realm already exists!"
else:
message = Message()
message.sender = UserProfile.objects.get(user__email="humbug+signups@humbughq.com")
message.recipient = Recipient.objects.get(type_id=create_stream_if_needed(
message.sender.realm, "signups").id, type=Recipient.STREAM)
message.subject = domain
message.content = "Signups enabled."
message.pub_date = now()
message.sending_client = get_client("Internal")
do_send_message(message)
print domain + ": Created."