2013-04-23 18:51:17 +02:00
|
|
|
from __future__ import absolute_import
|
2016-05-07 18:02:57 +02:00
|
|
|
from typing import Any, List, Set, Tuple, TypeVar, \
|
|
|
|
Union, Optional, Sequence, AbstractSet
|
|
|
|
from typing.re import Match
|
2016-06-12 15:05:01 +02:00
|
|
|
from zerver.lib.str_utils import NonBinaryStr
|
2013-04-23 18:51:17 +02:00
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
from django.db import models
|
2016-05-07 18:02:57 +02:00
|
|
|
from django.db.models.query import QuerySet
|
2016-06-13 08:00:27 +02:00
|
|
|
from django.db.models import Manager
|
2012-09-19 19:39:34 +02:00
|
|
|
from django.conf import settings
|
2013-06-24 17:51:10 +02:00
|
|
|
from django.contrib.auth.models import AbstractBaseUser, UserManager, \
|
|
|
|
PermissionsMixin
|
2014-02-21 21:18:38 +01:00
|
|
|
from django.dispatch import receiver
|
2014-01-28 18:18:19 +01:00
|
|
|
from zerver.lib.cache import cache_with_key, flush_user_profile, flush_realm, \
|
2013-04-05 00:13:03 +02:00
|
|
|
user_profile_by_id_cache_key, user_profile_by_email_cache_key, \
|
2014-01-28 20:49:55 +01:00
|
|
|
generic_bulk_cached_fetch, cache_set, flush_stream, \
|
2014-01-15 22:48:27 +01:00
|
|
|
display_recipient_cache_key, cache_delete, \
|
2014-02-26 00:12:14 +01:00
|
|
|
get_stream_cache_key, active_user_dicts_in_realm_cache_key, \
|
2016-04-27 23:57:38 +02:00
|
|
|
active_bot_dicts_in_realm_cache_key, active_user_dict_fields, \
|
|
|
|
active_bot_dict_fields
|
2013-08-08 16:51:18 +02:00
|
|
|
from zerver.lib.utils import make_safe_digest, generate_random_token
|
2016-06-12 09:36:05 +02:00
|
|
|
from zerver.lib.str_utils import force_bytes, ModelReprMixin, dict_with_str_keys
|
2016-02-12 21:08:56 +01:00
|
|
|
from django.db import transaction
|
2013-09-21 16:32:29 +02:00
|
|
|
from zerver.lib.avatar import gravatar_hash, get_avatar_url
|
2016-04-28 06:43:40 +02:00
|
|
|
from zerver.lib.camo import get_camo_url
|
2012-10-20 18:02:58 +02:00
|
|
|
from django.utils import timezone
|
2012-10-29 19:43:00 +01:00
|
|
|
from django.contrib.sessions.models import Session
|
2013-07-29 23:03:31 +02:00
|
|
|
from zerver.lib.timestamp import datetime_to_timestamp
|
2014-02-21 21:18:38 +01:00
|
|
|
from django.db.models.signals import pre_save, post_save, post_delete
|
2016-02-12 21:08:56 +01:00
|
|
|
from django.core.validators import MinLengthValidator, RegexValidator
|
2016-06-05 02:45:30 +02:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2013-06-19 21:41:29 +02:00
|
|
|
import zlib
|
2012-09-21 16:10:36 +02:00
|
|
|
|
2013-03-12 17:51:55 +01:00
|
|
|
from bitfield import BitField
|
2016-06-13 10:39:47 +02:00
|
|
|
from bitfield.types import BitHandler
|
2013-09-13 23:33:11 +02:00
|
|
|
from collections import defaultdict
|
2014-07-15 21:03:51 +02:00
|
|
|
from datetime import timedelta
|
2013-07-08 17:53:50 +02:00
|
|
|
import pylibmc
|
2014-02-21 21:18:38 +01:00
|
|
|
import re
|
2013-06-18 23:55:55 +02:00
|
|
|
import ujson
|
2013-09-17 22:31:05 +02:00
|
|
|
import logging
|
2016-06-09 22:40:04 +02:00
|
|
|
from six import binary_type, text_type
|
2016-03-24 20:24:01 +01:00
|
|
|
import time
|
|
|
|
import datetime
|
2013-03-12 17:51:55 +01:00
|
|
|
|
2016-07-25 23:55:07 +02:00
|
|
|
# TODO: see #1379 to eliminate bugdown dependencies
|
2016-01-25 21:12:34 +01:00
|
|
|
bugdown = None # type: Any
|
2013-08-09 19:15:44 +02:00
|
|
|
|
2012-12-07 01:05:14 +01:00
|
|
|
MAX_SUBJECT_LENGTH = 60
|
2012-12-11 17:12:53 +01:00
|
|
|
MAX_MESSAGE_LENGTH = 10000
|
2012-12-07 01:05:14 +01:00
|
|
|
|
2016-06-10 00:12:34 +02:00
|
|
|
STREAM_NAMES = TypeVar('STREAM_NAMES', Sequence[text_type], AbstractSet[text_type])
|
2016-05-07 18:02:57 +02:00
|
|
|
|
2016-03-31 03:30:33 +02:00
|
|
|
# Doing 1000 remote cache requests to get_display_recipient is quite slow,
|
|
|
|
# so add a local cache as well as the remote cache cache.
|
2016-06-12 00:47:19 +02:00
|
|
|
per_request_display_recipient_cache = {} # type: Dict[int, List[Dict[str, Any]]]
|
2013-09-21 15:35:12 +02:00
|
|
|
def get_display_recipient_by_id(recipient_id, recipient_type, recipient_type_id):
|
2016-06-12 00:47:19 +02:00
|
|
|
# type: (int, int, int) -> Union[text_type, List[Dict[str, Any]]]
|
2013-12-18 23:00:14 +01:00
|
|
|
if recipient_id not in per_request_display_recipient_cache:
|
2016-03-31 03:30:33 +02:00
|
|
|
result = get_display_recipient_remote_cache(recipient_id, recipient_type, recipient_type_id)
|
2013-12-18 23:00:14 +01:00
|
|
|
per_request_display_recipient_cache[recipient_id] = result
|
|
|
|
return per_request_display_recipient_cache[recipient_id]
|
2013-09-21 15:35:12 +02:00
|
|
|
|
2013-04-25 20:42:28 +02:00
|
|
|
def get_display_recipient(recipient):
|
2016-06-12 00:47:19 +02:00
|
|
|
# type: (Recipient) -> Union[text_type, List[Dict[str, Any]]]
|
2013-09-21 15:35:12 +02:00
|
|
|
return get_display_recipient_by_id(
|
|
|
|
recipient.id,
|
|
|
|
recipient.type,
|
|
|
|
recipient.type_id
|
|
|
|
)
|
2013-04-25 20:42:28 +02:00
|
|
|
|
2013-12-18 23:00:14 +01:00
|
|
|
def flush_per_request_caches():
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> None
|
2013-12-18 23:00:14 +01:00
|
|
|
global per_request_display_recipient_cache
|
|
|
|
per_request_display_recipient_cache = {}
|
2013-12-18 23:01:11 +01:00
|
|
|
global per_request_realm_filters_cache
|
|
|
|
per_request_realm_filters_cache = {}
|
2013-08-22 17:45:15 +02:00
|
|
|
|
2013-09-21 15:35:12 +02:00
|
|
|
@cache_with_key(lambda *args: display_recipient_cache_key(args[0]),
|
2013-03-26 19:09:45 +01:00
|
|
|
timeout=3600*24*7)
|
2016-03-31 03:30:33 +02:00
|
|
|
def get_display_recipient_remote_cache(recipient_id, recipient_type, recipient_type_id):
|
2016-06-12 00:47:19 +02:00
|
|
|
# type: (int, int, int) -> Union[text_type, List[Dict[str, Any]]]
|
Give our models meaningful reprs.
>>> from zephyr.models import UserProfile, Recipient, Zephyr, ZephyrClass
>>> for klass in [UserProfile, Recipient, Zephyr, ZephyrClass]:
... print klass.objects.all()[:2]
...
[<UserProfile: othello>, <UserProfile: iago>]
[<Recipient: Verona (1, class)>, <Recipient: Denmark (2, class)>]
[<Zephyr: Scotland / Scotland3 / <UserProfile: prospero>>, <Zephyr: Venice / Venice3 / <UserProfile: iago>>]
[<ZephyrClass: Verona>, <ZephyrClass: Denmark>]
(imported from commit 9998ffe40800213a5425990d6e85f5c5a43a5355)
2012-08-29 16:15:06 +02:00
|
|
|
"""
|
2012-12-03 19:49:12 +01:00
|
|
|
returns: an appropriate object describing the recipient. For a
|
|
|
|
stream this will be the stream name as a string. For a huddle or
|
|
|
|
personal, it will be an array of dicts about each recipient.
|
Give our models meaningful reprs.
>>> from zephyr.models import UserProfile, Recipient, Zephyr, ZephyrClass
>>> for klass in [UserProfile, Recipient, Zephyr, ZephyrClass]:
... print klass.objects.all()[:2]
...
[<UserProfile: othello>, <UserProfile: iago>]
[<Recipient: Verona (1, class)>, <Recipient: Denmark (2, class)>]
[<Zephyr: Scotland / Scotland3 / <UserProfile: prospero>>, <Zephyr: Venice / Venice3 / <UserProfile: iago>>]
[<ZephyrClass: Verona>, <ZephyrClass: Denmark>]
(imported from commit 9998ffe40800213a5425990d6e85f5c5a43a5355)
2012-08-29 16:15:06 +02:00
|
|
|
"""
|
2013-09-21 15:35:12 +02:00
|
|
|
if recipient_type == Recipient.STREAM:
|
|
|
|
stream = Stream.objects.get(id=recipient_type_id)
|
2012-10-10 22:53:24 +02:00
|
|
|
return stream.name
|
2012-09-27 19:58:42 +02:00
|
|
|
|
2012-12-03 19:49:12 +01:00
|
|
|
# We don't really care what the ordering is, just that it's deterministic.
|
2013-09-21 15:35:12 +02:00
|
|
|
user_profile_list = (UserProfile.objects.filter(subscription__recipient_id=recipient_id)
|
2012-12-03 19:49:12 +01:00
|
|
|
.select_related()
|
2013-03-28 20:43:34 +01:00
|
|
|
.order_by('email'))
|
|
|
|
return [{'email': user_profile.email,
|
2013-05-02 18:56:42 +02:00
|
|
|
'domain': user_profile.realm.domain,
|
2012-09-27 19:58:42 +02:00
|
|
|
'full_name': user_profile.full_name,
|
2013-07-29 22:07:42 +02:00
|
|
|
'short_name': user_profile.short_name,
|
2014-07-18 00:18:06 +02:00
|
|
|
'id': user_profile.id,
|
|
|
|
'is_mirror_dummy': user_profile.is_mirror_dummy,} for user_profile in user_profile_list]
|
2012-09-27 19:58:42 +02:00
|
|
|
|
2013-08-07 16:23:31 +02:00
|
|
|
def completely_open(domain):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type) -> bool
|
2013-08-07 16:23:31 +02:00
|
|
|
# This domain is completely open to everyone on the internet to
|
2015-08-20 02:38:32 +02:00
|
|
|
# join. E-mail addresses do not need to match the domain and
|
|
|
|
# an invite from an existing user is not required.
|
|
|
|
realm = get_realm(domain)
|
|
|
|
if not realm:
|
|
|
|
return False
|
|
|
|
return not realm.invite_required and not realm.restricted_to_domain
|
|
|
|
|
|
|
|
def get_unique_open_realm():
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> Optional[Realm]
|
2015-08-20 02:38:32 +02:00
|
|
|
# We only return a realm if there is a unique realm and it is completely open.
|
|
|
|
realms = Realm.objects.filter(deactivated=False)
|
2015-10-15 16:13:52 +02:00
|
|
|
if settings.VOYAGER:
|
|
|
|
# On production installations, the "zulip.com" realm is an
|
|
|
|
# empty realm just used for system bots, so don't include it
|
|
|
|
# in this accounting.
|
|
|
|
realms = realms.exclude(domain="zulip.com")
|
2015-08-20 02:38:32 +02:00
|
|
|
if len(realms) != 1:
|
|
|
|
return None
|
|
|
|
realm = realms[0]
|
|
|
|
if realm.invite_required or realm.restricted_to_domain:
|
|
|
|
return None
|
|
|
|
return realm
|
2013-08-22 16:56:37 +02:00
|
|
|
|
|
|
|
def get_realm_emoji_cache_key(realm):
|
2016-06-12 07:25:42 +02:00
|
|
|
# type: (Realm) -> text_type
|
|
|
|
return u'realm_emoji:%s' % (realm.id,)
|
2013-08-22 16:56:37 +02:00
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
class Realm(ModelReprMixin, models.Model):
|
2013-10-17 17:36:13 +02:00
|
|
|
# domain is a domain in the Internet sense. It must be structured like a
|
|
|
|
# valid email domain. We use is to restrict access, identify bots, etc.
|
2016-06-13 05:30:22 +02:00
|
|
|
domain = models.CharField(max_length=40, db_index=True, unique=True) # type: text_type
|
2013-10-17 17:36:13 +02:00
|
|
|
# name is the user-visible identifier for the realm. It has no required
|
|
|
|
# structure.
|
2016-06-13 05:30:22 +02:00
|
|
|
name = models.CharField(max_length=40, null=True) # type: Optional[text_type]
|
|
|
|
restricted_to_domain = models.BooleanField(default=True) # type: bool
|
|
|
|
invite_required = models.BooleanField(default=False) # type: bool
|
|
|
|
invite_by_admins_only = models.BooleanField(default=False) # type: bool
|
|
|
|
create_stream_by_admins_only = models.BooleanField(default=False) # type: bool
|
|
|
|
mandatory_topics = models.BooleanField(default=False) # type: bool
|
|
|
|
show_digest_email = models.BooleanField(default=True) # type: bool
|
|
|
|
name_changes_disabled = models.BooleanField(default=False) # type: bool
|
2016-07-08 02:25:55 +02:00
|
|
|
|
2016-06-21 21:34:41 +02:00
|
|
|
allow_message_editing = models.BooleanField(default=True) # type: bool
|
2016-07-08 02:25:55 +02:00
|
|
|
DEFAULT_MESSAGE_CONTENT_EDIT_LIMIT_SECONDS = 600 # if changed, also change in admin.js
|
|
|
|
message_content_edit_limit_seconds = models.IntegerField(default=DEFAULT_MESSAGE_CONTENT_EDIT_LIMIT_SECONDS) # type: int
|
2015-08-20 08:41:50 +02:00
|
|
|
|
2016-06-13 05:30:22 +02:00
|
|
|
date_created = models.DateTimeField(default=timezone.now) # type: datetime.datetime
|
|
|
|
notifications_stream = models.ForeignKey('Stream', related_name='+', null=True, blank=True) # type: Optional[Stream]
|
|
|
|
deactivated = models.BooleanField(default=False) # type: bool
|
2013-10-02 23:40:21 +02:00
|
|
|
|
2016-06-13 05:30:22 +02:00
|
|
|
DEFAULT_NOTIFICATION_STREAM_NAME = u'announce'
|
2012-09-05 21:49:56 +02:00
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
def __unicode__(self):
|
|
|
|
# type: () -> text_type
|
|
|
|
return u"<Realm: %s %s>" % (self.domain, self.id)
|
2012-09-05 21:49:56 +02:00
|
|
|
|
2013-08-22 16:56:37 +02:00
|
|
|
@cache_with_key(get_realm_emoji_cache_key, timeout=3600*24*7)
|
|
|
|
def get_emoji(self):
|
2016-06-12 11:52:42 +02:00
|
|
|
# type: () -> Dict[text_type, Dict[str, text_type]]
|
2013-08-22 16:56:37 +02:00
|
|
|
return get_realm_emoji_uncached(self)
|
|
|
|
|
2013-10-17 16:33:04 +02:00
|
|
|
@property
|
|
|
|
def deployment(self):
|
2016-06-04 09:02:05 +02:00
|
|
|
# type: () -> Any # returns a Deployment from zilencer.models
|
2013-10-17 16:33:04 +02:00
|
|
|
try:
|
|
|
|
return self._deployments.all()[0]
|
|
|
|
except IndexError:
|
|
|
|
return None
|
|
|
|
|
2016-01-25 21:12:34 +01:00
|
|
|
@deployment.setter # type: ignore # https://github.com/python/mypy/issues/220
|
2013-10-17 16:33:04 +02:00
|
|
|
def set_deployments(self, value):
|
2016-01-25 21:12:34 +01:00
|
|
|
# type: (Any) -> None
|
|
|
|
self._deployments = [value] # type: Any
|
2013-10-17 16:33:04 +02:00
|
|
|
|
2013-11-02 15:36:17 +01:00
|
|
|
def get_admin_users(self):
|
2016-06-12 14:43:15 +02:00
|
|
|
# type: () -> Sequence[UserProfile]
|
|
|
|
# TODO: Change return type to QuerySet[UserProfile]
|
2016-02-08 03:59:38 +01:00
|
|
|
return UserProfile.objects.filter(realm=self, is_realm_admin=True,
|
|
|
|
is_active=True).select_related()
|
2013-11-02 15:36:17 +01:00
|
|
|
|
2014-01-28 17:29:00 +01:00
|
|
|
def get_active_users(self):
|
2016-06-12 14:43:15 +02:00
|
|
|
# type: () -> Sequence[UserProfile]
|
|
|
|
# TODO: Change return type to QuerySet[UserProfile]
|
2014-01-28 17:29:00 +01:00
|
|
|
return UserProfile.objects.filter(realm=self, is_active=True).select_related()
|
|
|
|
|
2016-07-27 02:09:10 +02:00
|
|
|
@property
|
2016-07-27 01:45:29 +02:00
|
|
|
def is_zephyr_mirror_realm(self):
|
2016-07-27 02:09:10 +02:00
|
|
|
# type: () -> bool
|
|
|
|
return self.domain == "mit.edu"
|
|
|
|
|
2016-07-27 01:45:29 +02:00
|
|
|
@property
|
|
|
|
def webathena_enabled(self):
|
|
|
|
# type: () -> bool
|
|
|
|
return self.is_zephyr_mirror_realm
|
|
|
|
|
|
|
|
@property
|
|
|
|
def presence_disabled(self):
|
|
|
|
# type: () -> bool
|
|
|
|
return self.is_zephyr_mirror_realm
|
|
|
|
|
2015-10-14 22:43:04 +02:00
|
|
|
class Meta(object):
|
2013-06-24 21:26:38 +02:00
|
|
|
permissions = (
|
|
|
|
('administer', "Administer a realm"),
|
2015-09-20 19:32:01 +02:00
|
|
|
('api_super_user', "Can send messages as other users for mirroring"),
|
2013-06-24 21:26:38 +02:00
|
|
|
)
|
|
|
|
|
2014-01-28 18:18:19 +01:00
|
|
|
post_save.connect(flush_realm, sender=Realm)
|
|
|
|
|
2013-11-07 20:17:54 +01:00
|
|
|
class RealmAlias(models.Model):
|
2016-06-13 05:30:22 +02:00
|
|
|
realm = models.ForeignKey(Realm, null=True) # type: Optional[Realm]
|
|
|
|
domain = models.CharField(max_length=80, db_index=True, unique=True) # type: text_type
|
2013-11-07 20:17:54 +01:00
|
|
|
|
2013-07-18 18:48:56 +02:00
|
|
|
# These functions should only be used on email addresses that have
|
|
|
|
# been validated via django.core.validators.validate_email
|
|
|
|
#
|
|
|
|
# Note that we need to use some care, since can you have multiple @-signs; e.g.
|
2013-07-24 23:41:24 +02:00
|
|
|
# "tabbott@test"@zulip.com
|
2013-07-18 18:48:56 +02:00
|
|
|
# is valid email address
|
|
|
|
def email_to_username(email):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type) -> text_type
|
2013-08-15 19:16:03 +02:00
|
|
|
return "@".join(email.split("@")[:-1]).lower()
|
2013-07-18 18:48:56 +02:00
|
|
|
|
2013-11-22 23:48:00 +01:00
|
|
|
# Returns the raw domain portion of the desired email address
|
|
|
|
def split_email_to_domain(email):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type) -> text_type
|
2013-08-15 19:16:03 +02:00
|
|
|
return email.split("@")[-1].lower()
|
2013-07-18 18:48:56 +02:00
|
|
|
|
2013-11-22 23:48:00 +01:00
|
|
|
# Returns the domain, potentually de-aliased, for the realm
|
|
|
|
# that this user's email is in
|
|
|
|
def resolve_email_to_domain(email):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type) -> text_type
|
2013-11-22 23:48:00 +01:00
|
|
|
domain = split_email_to_domain(email)
|
|
|
|
alias = alias_for_realm(domain)
|
|
|
|
if alias is not None:
|
|
|
|
domain = alias.realm.domain
|
|
|
|
return domain
|
|
|
|
|
2016-01-12 16:24:34 +01:00
|
|
|
# Is a user with the given email address allowed to be in the given realm?
|
|
|
|
# (This function does not check whether the user has been invited to the realm.
|
|
|
|
# So for invite-only realms, this is the test for whether a user can be invited,
|
|
|
|
# not whether the user can sign up currently.)
|
|
|
|
def email_allowed_for_realm(email, realm):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type, Realm) -> bool
|
2016-01-12 16:24:34 +01:00
|
|
|
# Anyone can be in an open realm
|
|
|
|
if not realm.restricted_to_domain:
|
|
|
|
return True
|
|
|
|
|
|
|
|
# Otherwise, domains must match (case-insensitively)
|
|
|
|
email_domain = resolve_email_to_domain(email)
|
|
|
|
return email_domain == realm.domain.lower()
|
|
|
|
|
2013-11-22 23:48:00 +01:00
|
|
|
def alias_for_realm(domain):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type) -> Optional[RealmAlias]
|
2013-11-22 23:48:00 +01:00
|
|
|
try:
|
|
|
|
return RealmAlias.objects.get(domain=domain)
|
|
|
|
except RealmAlias.DoesNotExist:
|
|
|
|
return None
|
|
|
|
|
2013-11-04 23:16:46 +01:00
|
|
|
def remote_user_to_email(remote_user):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type) -> text_type
|
2013-11-04 23:16:46 +01:00
|
|
|
if settings.SSO_APPEND_DOMAIN is not None:
|
2013-11-05 23:50:28 +01:00
|
|
|
remote_user += "@" + settings.SSO_APPEND_DOMAIN
|
2013-11-04 23:16:46 +01:00
|
|
|
return remote_user
|
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
class RealmEmoji(ModelReprMixin, models.Model):
|
2016-06-13 07:01:49 +02:00
|
|
|
realm = models.ForeignKey(Realm) # type: Realm
|
2016-02-12 21:08:56 +01:00
|
|
|
# Second part of the regex (negative lookbehind) disallows names ending with one of the punctuation characters
|
|
|
|
name = models.TextField(validators=[MinLengthValidator(1),
|
2016-06-04 08:02:40 +02:00
|
|
|
RegexValidator(regex=r'^[0-9a-zA-Z.\-_]+(?<![.\-_])$',
|
2016-06-13 07:01:49 +02:00
|
|
|
message=_("Invalid characters in Emoji name"))]) # type: text_type
|
2016-05-03 04:02:01 +02:00
|
|
|
# URLs start having browser compatibility problem below 2000
|
|
|
|
# characters, so 1000 seems like a safe limit.
|
2016-06-13 07:01:49 +02:00
|
|
|
img_url = models.URLField(max_length=1000) # type: text_type
|
2013-08-22 16:56:37 +02:00
|
|
|
|
2015-10-14 22:43:04 +02:00
|
|
|
class Meta(object):
|
2013-08-22 16:56:37 +02:00
|
|
|
unique_together = ("realm", "name")
|
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
def __unicode__(self):
|
|
|
|
# type: () -> text_type
|
|
|
|
return u"<RealmEmoji(%s): %s %s>" % (self.realm.domain, self.name, self.img_url)
|
2013-08-22 16:56:37 +02:00
|
|
|
|
|
|
|
def get_realm_emoji_uncached(realm):
|
2016-06-12 11:52:42 +02:00
|
|
|
# type: (Realm) -> Dict[text_type, Dict[str, text_type]]
|
2013-08-22 16:56:37 +02:00
|
|
|
d = {}
|
|
|
|
for row in RealmEmoji.objects.filter(realm=realm):
|
2016-04-28 06:43:40 +02:00
|
|
|
d[row.name] = dict(source_url=row.img_url,
|
|
|
|
display_url=get_camo_url(row.img_url))
|
2013-08-22 16:56:37 +02:00
|
|
|
return d
|
|
|
|
|
2014-01-28 20:53:57 +01:00
|
|
|
def flush_realm_emoji(sender, **kwargs):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (Any, **Any) -> None
|
2013-08-22 16:56:37 +02:00
|
|
|
realm = kwargs['instance'].realm
|
|
|
|
cache_set(get_realm_emoji_cache_key(realm),
|
|
|
|
get_realm_emoji_uncached(realm),
|
|
|
|
timeout=3600*24*7)
|
|
|
|
|
2014-01-28 20:53:57 +01:00
|
|
|
post_save.connect(flush_realm_emoji, sender=RealmEmoji)
|
|
|
|
post_delete.connect(flush_realm_emoji, sender=RealmEmoji)
|
2013-08-22 16:56:37 +02:00
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
class RealmFilter(ModelReprMixin, models.Model):
|
2016-06-13 07:01:49 +02:00
|
|
|
realm = models.ForeignKey(Realm) # type: Realm
|
|
|
|
pattern = models.TextField() # type: text_type
|
|
|
|
url_format_string = models.TextField() # type: text_type
|
2013-12-06 23:02:52 +01:00
|
|
|
|
2015-10-14 22:43:04 +02:00
|
|
|
class Meta(object):
|
2013-12-06 23:02:52 +01:00
|
|
|
unique_together = ("realm", "pattern")
|
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
def __unicode__(self):
|
|
|
|
# type: () -> text_type
|
|
|
|
return u"<RealmFilter(%s): %s %s>" % (self.realm.domain, self.pattern, self.url_format_string)
|
2013-12-06 23:02:52 +01:00
|
|
|
|
|
|
|
def get_realm_filters_cache_key(domain):
|
2016-06-12 07:25:42 +02:00
|
|
|
# type: (text_type) -> text_type
|
|
|
|
return u'all_realm_filters:%s' % (domain,)
|
2013-12-06 23:02:52 +01:00
|
|
|
|
2016-03-31 03:30:33 +02:00
|
|
|
# We have a per-process cache to avoid doing 1000 remote cache queries during page load
|
2016-06-12 11:52:42 +02:00
|
|
|
per_request_realm_filters_cache = {} # type: Dict[text_type, List[Tuple[text_type, text_type]]]
|
2013-12-06 23:02:52 +01:00
|
|
|
def realm_filters_for_domain(domain):
|
2016-06-12 11:52:42 +02:00
|
|
|
# type: (text_type) -> List[Tuple[text_type, text_type]]
|
2013-12-18 23:01:11 +01:00
|
|
|
domain = domain.lower()
|
|
|
|
if domain not in per_request_realm_filters_cache:
|
2016-03-31 03:30:33 +02:00
|
|
|
per_request_realm_filters_cache[domain] = realm_filters_for_domain_remote_cache(domain)
|
2013-12-18 23:01:11 +01:00
|
|
|
return per_request_realm_filters_cache[domain]
|
|
|
|
|
|
|
|
@cache_with_key(get_realm_filters_cache_key, timeout=3600*24*7)
|
2016-03-31 03:30:33 +02:00
|
|
|
def realm_filters_for_domain_remote_cache(domain):
|
2016-06-12 11:52:42 +02:00
|
|
|
# type: (text_type) -> List[Tuple[text_type, text_type]]
|
2013-12-06 23:02:52 +01:00
|
|
|
filters = []
|
|
|
|
for realm_filter in RealmFilter.objects.filter(realm=get_realm(domain)):
|
|
|
|
filters.append((realm_filter.pattern, realm_filter.url_format_string))
|
|
|
|
|
|
|
|
return filters
|
|
|
|
|
|
|
|
def all_realm_filters():
|
2016-06-12 11:52:42 +02:00
|
|
|
# type: () -> Dict[text_type, List[Tuple[text_type, text_type]]]
|
|
|
|
filters = defaultdict(list) # type: Dict[text_type, List[Tuple[text_type, text_type]]]
|
2013-12-06 23:02:52 +01:00
|
|
|
for realm_filter in RealmFilter.objects.all():
|
|
|
|
filters[realm_filter.realm.domain].append((realm_filter.pattern, realm_filter.url_format_string))
|
|
|
|
|
|
|
|
return filters
|
|
|
|
|
2014-01-28 21:00:38 +01:00
|
|
|
def flush_realm_filter(sender, **kwargs):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (Any, **Any) -> None
|
2013-12-06 23:02:52 +01:00
|
|
|
realm = kwargs['instance'].realm
|
|
|
|
cache_delete(get_realm_filters_cache_key(realm.domain))
|
2013-12-18 23:01:11 +01:00
|
|
|
try:
|
|
|
|
per_request_realm_filters_cache.pop(realm.domain.lower())
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2013-12-06 23:02:52 +01:00
|
|
|
|
2014-01-28 21:00:38 +01:00
|
|
|
post_save.connect(flush_realm_filter, sender=RealmFilter)
|
|
|
|
post_delete.connect(flush_realm_filter, sender=RealmFilter)
|
2013-12-06 23:02:52 +01:00
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
class UserProfile(ModelReprMixin, AbstractBaseUser, PermissionsMixin):
|
2016-05-18 20:23:03 +02:00
|
|
|
DEFAULT_BOT = 1
|
2016-05-19 23:44:58 +02:00
|
|
|
"""
|
|
|
|
Incoming webhook bots are limited to only sending messages via webhooks.
|
|
|
|
Thus, it is less of a security risk to expose their API keys to third-party services,
|
|
|
|
since they can't be used to read messages.
|
|
|
|
"""
|
|
|
|
INCOMING_WEBHOOK_BOT = 2
|
2016-05-18 20:23:03 +02:00
|
|
|
|
2013-04-04 20:38:22 +02:00
|
|
|
# Fields from models.AbstractUser minus last_name and first_name,
|
|
|
|
# which we don't use; email is modified to make it indexed and unique.
|
2016-06-13 07:27:34 +02:00
|
|
|
email = models.EmailField(blank=False, db_index=True, unique=True) # type: text_type
|
|
|
|
is_staff = models.BooleanField(default=False) # type: bool
|
|
|
|
is_active = models.BooleanField(default=True, db_index=True) # type: bool
|
|
|
|
is_realm_admin = models.BooleanField(default=False, db_index=True) # type: bool
|
|
|
|
is_bot = models.BooleanField(default=False, db_index=True) # type: bool
|
|
|
|
bot_type = models.PositiveSmallIntegerField(null=True, db_index=True) # type: Optional[int]
|
|
|
|
is_api_super_user = models.BooleanField(default=False, db_index=True) # type: bool
|
|
|
|
date_joined = models.DateTimeField(default=timezone.now) # type: datetime.datetime
|
|
|
|
is_mirror_dummy = models.BooleanField(default=False) # type: bool
|
|
|
|
bot_owner = models.ForeignKey('self', null=True, on_delete=models.SET_NULL) # type: Optional[UserProfile]
|
2013-05-03 00:25:43 +02:00
|
|
|
|
2013-03-08 19:53:00 +01:00
|
|
|
USERNAME_FIELD = 'email'
|
2013-07-08 16:42:00 +02:00
|
|
|
MAX_NAME_LENGTH = 100
|
2013-03-08 19:53:00 +01:00
|
|
|
|
|
|
|
# Our custom site-specific fields
|
2016-06-13 07:27:34 +02:00
|
|
|
full_name = models.CharField(max_length=MAX_NAME_LENGTH) # type: text_type
|
|
|
|
short_name = models.CharField(max_length=MAX_NAME_LENGTH) # type: text_type
|
2013-09-20 20:53:56 +02:00
|
|
|
# pointer points to Message.id, NOT UserMessage.id.
|
2016-06-13 07:27:34 +02:00
|
|
|
pointer = models.IntegerField() # type: int
|
|
|
|
last_pointer_updater = models.CharField(max_length=64) # type: text_type
|
|
|
|
realm = models.ForeignKey(Realm) # type: Realm
|
|
|
|
api_key = models.CharField(max_length=32) # type: text_type
|
2014-02-05 21:31:30 +01:00
|
|
|
|
|
|
|
### Notifications settings. ###
|
|
|
|
|
|
|
|
# Stream notifications.
|
2016-06-13 07:27:34 +02:00
|
|
|
enable_stream_desktop_notifications = models.BooleanField(default=False) # type: bool
|
|
|
|
enable_stream_sounds = models.BooleanField(default=False) # type: bool
|
2014-02-05 21:31:30 +01:00
|
|
|
|
|
|
|
# PM + @-mention notifications.
|
2016-06-13 07:27:34 +02:00
|
|
|
enable_desktop_notifications = models.BooleanField(default=True) # type: bool
|
|
|
|
enable_sounds = models.BooleanField(default=True) # type: bool
|
|
|
|
enable_offline_email_notifications = models.BooleanField(default=True) # type: bool
|
|
|
|
enable_offline_push_notifications = models.BooleanField(default=True) # type: bool
|
2014-02-05 21:31:30 +01:00
|
|
|
|
2016-06-13 07:27:34 +02:00
|
|
|
enable_digest_emails = models.BooleanField(default=True) # type: bool
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2014-02-05 21:31:30 +01:00
|
|
|
# Old notification field superseded by existence of stream notification
|
|
|
|
# settings.
|
2016-06-13 07:27:34 +02:00
|
|
|
default_desktop_notifications = models.BooleanField(default=True) # type: bool
|
2014-02-05 21:31:30 +01:00
|
|
|
|
|
|
|
###
|
|
|
|
|
2016-06-13 07:27:34 +02:00
|
|
|
last_reminder = models.DateTimeField(default=timezone.now, null=True) # type: Optional[datetime.datetime]
|
2016-07-11 15:54:15 +02:00
|
|
|
rate_limits = models.CharField(default=u"", max_length=100) # type: text_type # comma-separated list of range:max pairs
|
2014-02-05 21:31:30 +01:00
|
|
|
|
2014-02-06 23:12:34 +01:00
|
|
|
# Default streams
|
2016-06-13 07:27:34 +02:00
|
|
|
default_sending_stream = models.ForeignKey('zerver.Stream', null=True, related_name='+') # type: Optional[Stream]
|
|
|
|
default_events_register_stream = models.ForeignKey('zerver.Stream', null=True, related_name='+') # type: Optional[Stream]
|
|
|
|
default_all_public_streams = models.BooleanField(default=False) # type: bool
|
2014-02-06 23:12:34 +01:00
|
|
|
|
2013-12-04 22:48:47 +01:00
|
|
|
# UI vars
|
2016-06-13 07:27:34 +02:00
|
|
|
enter_sends = models.NullBooleanField(default=True) # type: Optional[bool]
|
|
|
|
autoscroll_forever = models.BooleanField(default=False) # type: bool
|
|
|
|
left_side_userlist = models.BooleanField(default=False) # type: bool
|
2013-12-04 22:48:47 +01:00
|
|
|
|
2015-08-19 22:35:46 +02:00
|
|
|
# display settings
|
2016-06-13 07:27:34 +02:00
|
|
|
twenty_four_hour_time = models.BooleanField(default=False) # type: bool
|
2016-07-11 15:54:15 +02:00
|
|
|
default_language = models.CharField(default=u'en', max_length=50) # type: text_type
|
2015-08-19 22:35:46 +02:00
|
|
|
|
2013-05-17 21:28:51 +02:00
|
|
|
# Hours to wait before sending another email to a user
|
|
|
|
EMAIL_REMINDER_WAITPERIOD = 24
|
2013-09-17 22:31:05 +02:00
|
|
|
# Minutes to wait before warning a bot owner that her bot sent a message
|
|
|
|
# to a nonexistent stream
|
|
|
|
BOT_OWNER_STREAM_ALERT_WAITPERIOD = 1
|
2013-05-17 21:28:51 +02:00
|
|
|
|
2016-06-12 13:27:16 +02:00
|
|
|
AVATAR_FROM_GRAVATAR = u'G'
|
|
|
|
AVATAR_FROM_USER = u'U'
|
|
|
|
AVATAR_FROM_SYSTEM = u'S'
|
2013-06-07 21:51:57 +02:00
|
|
|
AVATAR_SOURCES = (
|
|
|
|
(AVATAR_FROM_GRAVATAR, 'Hosted by Gravatar'),
|
|
|
|
(AVATAR_FROM_USER, 'Uploaded by user'),
|
|
|
|
(AVATAR_FROM_SYSTEM, 'System generated'),
|
|
|
|
)
|
2016-06-13 07:27:34 +02:00
|
|
|
avatar_source = models.CharField(default=AVATAR_FROM_GRAVATAR, choices=AVATAR_SOURCES, max_length=1) # type: text_type
|
2013-06-07 21:51:57 +02:00
|
|
|
|
2016-06-12 13:27:16 +02:00
|
|
|
TUTORIAL_WAITING = u'W'
|
|
|
|
TUTORIAL_STARTED = u'S'
|
|
|
|
TUTORIAL_FINISHED = u'F'
|
2013-04-04 22:30:28 +02:00
|
|
|
TUTORIAL_STATES = ((TUTORIAL_WAITING, "Waiting"),
|
|
|
|
(TUTORIAL_STARTED, "Started"),
|
|
|
|
(TUTORIAL_FINISHED, "Finished"))
|
|
|
|
|
2016-06-13 07:27:34 +02:00
|
|
|
tutorial_status = models.CharField(default=TUTORIAL_WAITING, choices=TUTORIAL_STATES, max_length=1) # type: text_type
|
2013-05-08 16:12:19 +02:00
|
|
|
# Contains serialized JSON of the form:
|
|
|
|
# [("step 1", true), ("step 2", false)]
|
|
|
|
# where the second element of each tuple is if the step has been
|
|
|
|
# completed.
|
2016-07-11 15:54:15 +02:00
|
|
|
onboarding_steps = models.TextField(default=u'[]') # type: text_type
|
2013-04-04 22:30:28 +02:00
|
|
|
|
2016-06-13 07:27:34 +02:00
|
|
|
invites_granted = models.IntegerField(default=0) # type: int
|
|
|
|
invites_used = models.IntegerField(default=0) # type: int
|
2013-07-26 16:51:02 +02:00
|
|
|
|
2016-07-11 15:54:15 +02:00
|
|
|
alert_words = models.TextField(default=u'[]') # type: text_type # json-serialized list of strings
|
2013-09-03 22:41:17 +02:00
|
|
|
|
2013-09-09 21:53:40 +02:00
|
|
|
# Contains serialized JSON of the form:
|
|
|
|
# [["social", "mit"], ["devel", "ios"]]
|
2016-07-11 15:54:15 +02:00
|
|
|
muted_topics = models.TextField(default=u'[]') # type: text_type
|
2013-09-09 21:53:40 +02:00
|
|
|
|
2016-01-25 21:12:34 +01:00
|
|
|
objects = UserManager() # type: UserManager
|
Give our models meaningful reprs.
>>> from zephyr.models import UserProfile, Recipient, Zephyr, ZephyrClass
>>> for klass in [UserProfile, Recipient, Zephyr, ZephyrClass]:
... print klass.objects.all()[:2]
...
[<UserProfile: othello>, <UserProfile: iago>]
[<Recipient: Verona (1, class)>, <Recipient: Denmark (2, class)>]
[<Zephyr: Scotland / Scotland3 / <UserProfile: prospero>>, <Zephyr: Venice / Venice3 / <UserProfile: iago>>]
[<ZephyrClass: Verona>, <ZephyrClass: Denmark>]
(imported from commit 9998ffe40800213a5425990d6e85f5c5a43a5355)
2012-08-29 16:15:06 +02:00
|
|
|
|
2013-09-05 20:51:38 +02:00
|
|
|
def can_admin_user(self, target_user):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (UserProfile) -> bool
|
2013-09-05 20:51:38 +02:00
|
|
|
"""Returns whether this user has permission to modify target_user"""
|
|
|
|
if target_user.bot_owner == self:
|
|
|
|
return True
|
2016-02-08 03:59:38 +01:00
|
|
|
elif self.is_realm_admin and self.realm == target_user.realm:
|
2013-09-05 20:51:38 +02:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2013-09-17 22:31:05 +02:00
|
|
|
def last_reminder_tzaware(self):
|
2016-06-12 12:03:05 +02:00
|
|
|
# type: () -> Optional[datetime.datetime]
|
2013-09-17 22:31:05 +02:00
|
|
|
if self.last_reminder is not None and timezone.is_naive(self.last_reminder):
|
2016-06-12 12:03:05 +02:00
|
|
|
logging.warning(u"Loaded a user_profile.last_reminder for user %s that's not tz-aware: %s"
|
|
|
|
% (self.email, text_type(self.last_reminder)))
|
2013-09-17 22:31:05 +02:00
|
|
|
return self.last_reminder.replace(tzinfo=timezone.utc)
|
|
|
|
|
|
|
|
return self.last_reminder
|
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
def __unicode__(self):
|
|
|
|
# type: () -> text_type
|
|
|
|
return u"<UserProfile: %s %s>" % (self.email, self.realm)
|
2013-03-08 19:53:00 +01:00
|
|
|
|
2016-05-19 23:44:58 +02:00
|
|
|
@property
|
|
|
|
def is_incoming_webhook(self):
|
|
|
|
return self.bot_type == UserProfile.INCOMING_WEBHOOK_BOT
|
|
|
|
|
2013-10-20 21:10:03 +02:00
|
|
|
@staticmethod
|
|
|
|
def emails_from_ids(user_ids):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (Sequence[int]) -> Dict[int, text_type]
|
2013-10-20 21:10:03 +02:00
|
|
|
rows = UserProfile.objects.filter(id__in=user_ids).values('id', 'email')
|
|
|
|
return {row['id']: row['email'] for row in rows}
|
|
|
|
|
2014-01-15 22:31:38 +01:00
|
|
|
def can_create_streams(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> bool
|
2016-05-12 10:28:00 +02:00
|
|
|
if self.is_realm_admin or not self.realm.create_stream_by_admins_only:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
2014-01-15 22:31:38 +01:00
|
|
|
|
2014-01-24 22:29:17 +01:00
|
|
|
def receives_offline_notifications(user_profile):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (UserProfile) -> bool
|
2014-01-24 22:29:17 +01:00
|
|
|
return ((user_profile.enable_offline_email_notifications or
|
|
|
|
user_profile.enable_offline_push_notifications) and
|
|
|
|
not user_profile.is_bot)
|
|
|
|
|
2016-03-31 03:30:33 +02:00
|
|
|
# Make sure we flush the UserProfile object from our remote cache
|
2013-03-15 21:17:32 +01:00
|
|
|
# whenever we save it.
|
2014-01-28 17:02:30 +01:00
|
|
|
post_save.connect(flush_user_profile, sender=UserProfile)
|
2013-03-15 21:17:32 +01:00
|
|
|
|
2012-09-28 22:47:05 +02:00
|
|
|
class PreregistrationUser(models.Model):
|
2016-06-13 08:00:27 +02:00
|
|
|
email = models.EmailField() # type: text_type
|
|
|
|
referred_by = models.ForeignKey(UserProfile, null=True) # Optional[UserProfile]
|
|
|
|
streams = models.ManyToManyField('Stream') # type: Manager
|
|
|
|
invited_at = models.DateTimeField(auto_now=True) # type: datetime.datetime
|
2016-06-03 01:02:58 +02:00
|
|
|
realm_creation = models.BooleanField(default=False)
|
2012-12-11 23:42:32 +01:00
|
|
|
|
2012-10-29 19:08:18 +01:00
|
|
|
# status: whether an object has been confirmed.
|
|
|
|
# if confirmed, set to confirmation.settings.STATUS_ACTIVE
|
2016-06-13 08:00:27 +02:00
|
|
|
status = models.IntegerField(default=0) # type: int
|
2012-10-29 19:08:18 +01:00
|
|
|
|
2016-06-13 08:00:27 +02:00
|
|
|
realm = models.ForeignKey(Realm, null=True) # type: Optional[Realm]
|
2013-08-02 20:31:19 +02:00
|
|
|
|
2013-12-09 23:17:16 +01:00
|
|
|
class PushDeviceToken(models.Model):
|
|
|
|
APNS = 1
|
|
|
|
GCM = 2
|
|
|
|
|
|
|
|
KINDS = (
|
|
|
|
(APNS, 'apns'),
|
|
|
|
(GCM, 'gcm'),
|
|
|
|
)
|
|
|
|
|
2016-06-13 08:02:21 +02:00
|
|
|
kind = models.PositiveSmallIntegerField(choices=KINDS) # type: int
|
2013-12-09 23:17:16 +01:00
|
|
|
|
|
|
|
# The token is a unique device-specific token that is
|
|
|
|
# sent to us from each device:
|
|
|
|
# - APNS token if kind == APNS
|
|
|
|
# - GCM registration id if kind == GCM
|
2016-06-13 08:02:21 +02:00
|
|
|
token = models.CharField(max_length=4096, unique=True) # type: text_type
|
|
|
|
last_updated = models.DateTimeField(auto_now=True) # type: datetime.datetime
|
2013-12-09 23:17:16 +01:00
|
|
|
|
|
|
|
# The user who's device this is
|
2016-06-13 08:02:21 +02:00
|
|
|
user = models.ForeignKey(UserProfile, db_index=True) # type: UserProfile
|
2013-12-09 23:17:16 +01:00
|
|
|
|
2015-02-10 08:08:39 +01:00
|
|
|
# [optional] Contains the app id of the device if it is an iOS device
|
2016-06-13 08:02:21 +02:00
|
|
|
ios_app_id = models.TextField(null=True) # type: Optional[text_type]
|
2015-02-10 08:08:39 +01:00
|
|
|
|
2015-08-18 21:29:23 +02:00
|
|
|
def generate_email_token_for_stream():
|
2016-06-12 12:24:27 +02:00
|
|
|
# type: () -> text_type
|
2015-08-18 21:29:23 +02:00
|
|
|
return generate_random_token(32)
|
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
class Stream(ModelReprMixin, models.Model):
|
2013-10-09 16:55:17 +02:00
|
|
|
MAX_NAME_LENGTH = 60
|
2016-06-13 08:55:59 +02:00
|
|
|
name = models.CharField(max_length=MAX_NAME_LENGTH, db_index=True) # type: text_type
|
|
|
|
realm = models.ForeignKey(Realm, db_index=True) # type: Realm
|
|
|
|
invite_only = models.NullBooleanField(default=False) # type: Optional[bool]
|
2013-08-08 16:51:18 +02:00
|
|
|
# Used by the e-mail forwarder. The e-mail RFC specifies a maximum
|
|
|
|
# e-mail length of 254, and our max stream length is 30, so we
|
|
|
|
# have plenty of room for the token.
|
|
|
|
email_token = models.CharField(
|
2016-06-13 08:55:59 +02:00
|
|
|
max_length=32, default=generate_email_token_for_stream) # type: text_type
|
2016-07-11 15:54:15 +02:00
|
|
|
description = models.CharField(max_length=1024, default=u'') # type: text_type
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2016-06-13 08:55:59 +02:00
|
|
|
date_created = models.DateTimeField(default=timezone.now) # type: datetime.datetime
|
|
|
|
deactivated = models.BooleanField(default=False) # type: bool
|
2013-09-26 21:48:08 +02:00
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
def __unicode__(self):
|
|
|
|
# type: () -> text_type
|
|
|
|
return u"<Stream: %s>" % (self.name,)
|
Give our models meaningful reprs.
>>> from zephyr.models import UserProfile, Recipient, Zephyr, ZephyrClass
>>> for klass in [UserProfile, Recipient, Zephyr, ZephyrClass]:
... print klass.objects.all()[:2]
...
[<UserProfile: othello>, <UserProfile: iago>]
[<Recipient: Verona (1, class)>, <Recipient: Denmark (2, class)>]
[<Zephyr: Scotland / Scotland3 / <UserProfile: prospero>>, <Zephyr: Venice / Venice3 / <UserProfile: iago>>]
[<ZephyrClass: Verona>, <ZephyrClass: Denmark>]
(imported from commit 9998ffe40800213a5425990d6e85f5c5a43a5355)
2012-08-29 16:15:06 +02:00
|
|
|
|
2013-01-15 21:10:50 +01:00
|
|
|
def is_public(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> bool
|
2016-07-27 01:45:29 +02:00
|
|
|
# All streams are private in Zephyr mirroring realms.
|
|
|
|
return not self.invite_only and not self.realm.is_zephyr_mirror_realm
|
2013-01-15 21:10:50 +01:00
|
|
|
|
2015-10-14 22:43:04 +02:00
|
|
|
class Meta(object):
|
2012-11-07 22:33:38 +01:00
|
|
|
unique_together = ("name", "realm")
|
|
|
|
|
2012-09-19 18:54:57 +02:00
|
|
|
@classmethod
|
|
|
|
def create(cls, name, realm):
|
2016-06-12 12:49:00 +02:00
|
|
|
# type: (Any, text_type, Realm) -> Tuple[Stream, Recipient]
|
2012-10-10 22:53:24 +02:00
|
|
|
stream = cls(name=name, realm=realm)
|
|
|
|
stream.save()
|
2012-09-07 19:24:54 +02:00
|
|
|
|
2012-10-19 23:40:44 +02:00
|
|
|
recipient = Recipient.objects.create(type_id=stream.id,
|
|
|
|
type=Recipient.STREAM)
|
2012-10-10 22:53:24 +02:00
|
|
|
return (stream, recipient)
|
2012-09-07 19:24:54 +02:00
|
|
|
|
2013-09-19 22:55:08 +02:00
|
|
|
def num_subscribers(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> int
|
2013-09-19 22:55:08 +02:00
|
|
|
return Subscription.objects.filter(
|
|
|
|
recipient__type=Recipient.STREAM,
|
|
|
|
recipient__type_id=self.id,
|
|
|
|
user_profile__is_active=True,
|
|
|
|
active=True
|
|
|
|
).count()
|
|
|
|
|
2014-03-02 06:46:54 +01:00
|
|
|
# This is stream information that is sent to clients
|
|
|
|
def to_dict(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> Dict[str, Any]
|
2014-03-02 06:46:54 +01:00
|
|
|
return dict(name=self.name,
|
|
|
|
stream_id=self.id,
|
|
|
|
description=self.description,
|
|
|
|
invite_only=self.invite_only)
|
|
|
|
|
2014-01-28 20:49:55 +01:00
|
|
|
post_save.connect(flush_stream, sender=Stream)
|
|
|
|
post_delete.connect(flush_stream, sender=Stream)
|
2014-01-15 22:48:27 +01:00
|
|
|
|
2013-03-18 18:57:34 +01:00
|
|
|
def valid_stream_name(name):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type) -> bool
|
2013-03-18 18:57:34 +01:00
|
|
|
return name != ""
|
|
|
|
|
2016-04-01 08:42:38 +02:00
|
|
|
# The Recipient table is used to map Messages to the set of users who
|
|
|
|
# received the message. It is implemented as a set of triples (id,
|
|
|
|
# type_id, type). We have 3 types of recipients: Huddles (for group
|
|
|
|
# private messages), UserProfiles (for 1:1 private messages), and
|
2016-06-02 21:59:58 +02:00
|
|
|
# Streams. The recipient table maps a globally unique recipient id
|
2016-04-01 08:42:38 +02:00
|
|
|
# (used by the Message table) to the type-specific unique id (the
|
|
|
|
# stream id, user_profile id, or huddle id).
|
2016-06-12 09:36:05 +02:00
|
|
|
class Recipient(ModelReprMixin, models.Model):
|
2016-06-13 10:18:29 +02:00
|
|
|
type_id = models.IntegerField(db_index=True) # type: int
|
|
|
|
type = models.PositiveSmallIntegerField(db_index=True) # type: int
|
2012-10-10 22:58:51 +02:00
|
|
|
# Valid types are {personal, stream, huddle}
|
2012-09-07 20:14:13 +02:00
|
|
|
PERSONAL = 1
|
2012-10-10 22:57:21 +02:00
|
|
|
STREAM = 2
|
2012-09-07 20:14:13 +02:00
|
|
|
HUDDLE = 3
|
|
|
|
|
2015-10-14 22:43:04 +02:00
|
|
|
class Meta(object):
|
2012-11-07 22:33:38 +01:00
|
|
|
unique_together = ("type", "type_id")
|
|
|
|
|
2012-11-02 21:08:29 +01:00
|
|
|
# N.B. If we used Django's choice=... we would get this for free (kinda)
|
|
|
|
_type_names = {
|
|
|
|
PERSONAL: 'personal',
|
|
|
|
STREAM: 'stream',
|
|
|
|
HUDDLE: 'huddle' }
|
|
|
|
|
2012-09-07 20:14:13 +02:00
|
|
|
def type_name(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> str
|
2012-11-02 21:08:29 +01:00
|
|
|
# Raises KeyError if invalid
|
|
|
|
return self._type_names[self.type]
|
2012-08-28 21:27:42 +02:00
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
def __unicode__(self):
|
|
|
|
# type: () -> text_type
|
Give our models meaningful reprs.
>>> from zephyr.models import UserProfile, Recipient, Zephyr, ZephyrClass
>>> for klass in [UserProfile, Recipient, Zephyr, ZephyrClass]:
... print klass.objects.all()[:2]
...
[<UserProfile: othello>, <UserProfile: iago>]
[<Recipient: Verona (1, class)>, <Recipient: Denmark (2, class)>]
[<Zephyr: Scotland / Scotland3 / <UserProfile: prospero>>, <Zephyr: Venice / Venice3 / <UserProfile: iago>>]
[<ZephyrClass: Verona>, <ZephyrClass: Denmark>]
(imported from commit 9998ffe40800213a5425990d6e85f5c5a43a5355)
2012-08-29 16:15:06 +02:00
|
|
|
display_recipient = get_display_recipient(self)
|
2016-06-12 09:36:05 +02:00
|
|
|
return u"<Recipient: %s (%d, %s)>" % (display_recipient, self.type_id, self.type)
|
Give our models meaningful reprs.
>>> from zephyr.models import UserProfile, Recipient, Zephyr, ZephyrClass
>>> for klass in [UserProfile, Recipient, Zephyr, ZephyrClass]:
... print klass.objects.all()[:2]
...
[<UserProfile: othello>, <UserProfile: iago>]
[<Recipient: Verona (1, class)>, <Recipient: Denmark (2, class)>]
[<Zephyr: Scotland / Scotland3 / <UserProfile: prospero>>, <Zephyr: Venice / Venice3 / <UserProfile: iago>>]
[<ZephyrClass: Verona>, <ZephyrClass: Denmark>]
(imported from commit 9998ffe40800213a5425990d6e85f5c5a43a5355)
2012-08-29 16:15:06 +02:00
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
class Client(ModelReprMixin, models.Model):
|
2016-06-13 10:18:29 +02:00
|
|
|
name = models.CharField(max_length=30, db_index=True, unique=True) # type: text_type
|
2012-10-19 21:30:42 +02:00
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
def __unicode__(self):
|
|
|
|
# type: () -> text_type
|
|
|
|
return u"<Client: %s>" % (self.name,)
|
2016-04-21 00:26:45 +02:00
|
|
|
|
2016-06-12 12:49:00 +02:00
|
|
|
get_client_cache = {} # type: Dict[text_type, Client]
|
2013-11-20 22:16:48 +01:00
|
|
|
def get_client(name):
|
2016-06-12 12:49:00 +02:00
|
|
|
# type: (text_type) -> Client
|
2013-11-20 22:16:48 +01:00
|
|
|
if name not in get_client_cache:
|
2016-03-31 03:30:33 +02:00
|
|
|
result = get_client_remote_cache(name)
|
2013-11-20 22:16:48 +01:00
|
|
|
get_client_cache[name] = result
|
|
|
|
return get_client_cache[name]
|
|
|
|
|
2013-03-26 17:47:52 +01:00
|
|
|
def get_client_cache_key(name):
|
2016-06-12 07:25:42 +02:00
|
|
|
# type: (text_type) -> text_type
|
|
|
|
return u'get_client:%s' % (make_safe_digest(name),)
|
2013-03-26 17:47:52 +01:00
|
|
|
|
2013-03-26 19:09:45 +01:00
|
|
|
@cache_with_key(get_client_cache_key, timeout=3600*24*7)
|
2016-03-31 03:30:33 +02:00
|
|
|
def get_client_remote_cache(name):
|
2016-06-12 12:49:00 +02:00
|
|
|
# type: (text_type) -> Client
|
2013-11-01 18:59:05 +01:00
|
|
|
(client, _) = Client.objects.get_or_create(name=name)
|
2012-10-19 21:30:42 +02:00
|
|
|
return client
|
|
|
|
|
2013-03-19 13:05:19 +01:00
|
|
|
# get_stream_backend takes either a realm id or a realm
|
2013-03-26 19:09:45 +01:00
|
|
|
@cache_with_key(get_stream_cache_key, timeout=3600*24*7)
|
2013-03-19 13:05:19 +01:00
|
|
|
def get_stream_backend(stream_name, realm):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type, Realm) -> Stream
|
2013-01-17 22:16:39 +01:00
|
|
|
if isinstance(realm, Realm):
|
|
|
|
realm_id = realm.id
|
|
|
|
else:
|
|
|
|
realm_id = realm
|
2013-03-19 13:05:19 +01:00
|
|
|
return Stream.objects.select_related("realm").get(
|
|
|
|
name__iexact=stream_name.strip(), realm_id=realm_id)
|
|
|
|
|
2014-01-24 23:30:53 +01:00
|
|
|
def get_active_streams(realm):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (Realm) -> QuerySet
|
2014-01-24 23:30:53 +01:00
|
|
|
"""
|
|
|
|
Return all streams (including invite-only streams) that have not been deactivated.
|
|
|
|
"""
|
|
|
|
return Stream.objects.filter(realm=realm, deactivated=False)
|
|
|
|
|
2013-03-19 13:05:19 +01:00
|
|
|
# get_stream takes either a realm id or a realm
|
|
|
|
def get_stream(stream_name, realm):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type, Union[int, Realm]) -> Optional[Stream]
|
2013-01-17 22:16:39 +01:00
|
|
|
try:
|
2013-03-19 13:05:19 +01:00
|
|
|
return get_stream_backend(stream_name, realm)
|
2013-01-17 22:16:39 +01:00
|
|
|
except Stream.DoesNotExist:
|
|
|
|
return None
|
|
|
|
|
2013-06-27 22:52:05 +02:00
|
|
|
def bulk_get_streams(realm, stream_names):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (Realm, STREAM_NAMES) -> Dict[text_type, Any]
|
2013-06-27 22:52:05 +02:00
|
|
|
if isinstance(realm, Realm):
|
|
|
|
realm_id = realm.id
|
|
|
|
else:
|
|
|
|
realm_id = realm
|
|
|
|
|
|
|
|
def fetch_streams_by_name(stream_names):
|
2016-06-10 00:12:34 +02:00
|
|
|
# type: (List[text_type]) -> Sequence[Stream]
|
2016-06-04 09:02:05 +02:00
|
|
|
#
|
2013-06-27 22:52:05 +02:00
|
|
|
# This should be just
|
|
|
|
#
|
|
|
|
# Stream.objects.select_related("realm").filter(name__iexact__in=stream_names,
|
|
|
|
# realm_id=realm_id)
|
|
|
|
#
|
|
|
|
# But chaining __in and __iexact doesn't work with Django's
|
|
|
|
# ORM, so we have the following hack to construct the relevant where clause
|
|
|
|
if len(stream_names) == 0:
|
|
|
|
return []
|
|
|
|
upper_list = ", ".join(["UPPER(%s)"] * len(stream_names))
|
2013-07-29 23:03:31 +02:00
|
|
|
where_clause = "UPPER(zerver_stream.name::text) IN (%s)" % (upper_list,)
|
2014-01-24 23:30:53 +01:00
|
|
|
return get_active_streams(realm_id).select_related("realm").extra(
|
2013-06-27 22:52:05 +02:00
|
|
|
where=[where_clause],
|
|
|
|
params=stream_names)
|
|
|
|
|
|
|
|
return generic_bulk_cached_fetch(lambda stream_name: get_stream_cache_key(stream_name, realm),
|
|
|
|
fetch_streams_by_name,
|
|
|
|
[stream_name.lower() for stream_name in stream_names],
|
|
|
|
id_fetcher=lambda stream: stream.name.lower())
|
|
|
|
|
2013-03-26 17:10:44 +01:00
|
|
|
def get_recipient_cache_key(type, type_id):
|
2016-06-12 07:25:42 +02:00
|
|
|
# type: (int, int) -> text_type
|
|
|
|
return u"get_recipient:%s:%s" % (type, type_id,)
|
2013-03-26 17:10:44 +01:00
|
|
|
|
2013-03-26 19:09:45 +01:00
|
|
|
@cache_with_key(get_recipient_cache_key, timeout=3600*24*7)
|
2013-03-18 16:54:58 +01:00
|
|
|
def get_recipient(type, type_id):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (int, int) -> Recipient
|
2013-03-18 16:54:58 +01:00
|
|
|
return Recipient.objects.get(type_id=type_id, type=type)
|
|
|
|
|
2013-06-25 19:26:58 +02:00
|
|
|
def bulk_get_recipients(type, type_ids):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (int, List[int]) -> Dict[int, Any]
|
2013-06-25 19:26:58 +02:00
|
|
|
def cache_key_function(type_id):
|
2016-06-12 07:25:42 +02:00
|
|
|
# type: (int) -> text_type
|
2013-06-25 19:26:58 +02:00
|
|
|
return get_recipient_cache_key(type, type_id)
|
|
|
|
def query_function(type_ids):
|
2016-06-12 14:43:15 +02:00
|
|
|
# type: (List[int]) -> Sequence[Recipient]
|
|
|
|
# TODO: Change return type to QuerySet[Recipient]
|
2013-06-25 19:26:58 +02:00
|
|
|
return Recipient.objects.filter(type=type, type_id__in=type_ids)
|
|
|
|
|
|
|
|
return generic_bulk_cached_fetch(cache_key_function, query_function, type_ids,
|
|
|
|
id_fetcher=lambda recipient: recipient.type_id)
|
|
|
|
|
2013-02-02 00:56:37 +01:00
|
|
|
# NB: This function is currently unused, but may come in handy.
|
2012-12-10 21:39:28 +01:00
|
|
|
def linebreak(string):
|
2016-06-12 13:19:24 +02:00
|
|
|
# type: (text_type) -> text_type
|
2012-12-10 21:39:28 +01:00
|
|
|
return string.replace('\n\n', '<p/>').replace('\n', '<br/>')
|
|
|
|
|
2016-06-09 22:40:04 +02:00
|
|
|
def extract_message_dict(message_bytes):
|
|
|
|
# type: (binary_type) -> Dict[str, Any]
|
|
|
|
return dict_with_str_keys(ujson.loads(zlib.decompress(message_bytes).decode("utf-8")))
|
2013-06-18 20:02:45 +02:00
|
|
|
|
|
|
|
def stringify_message_dict(message_dict):
|
2016-06-09 22:40:04 +02:00
|
|
|
# type: (Dict[str, Any]) -> binary_type
|
|
|
|
return zlib.compress(force_bytes(ujson.dumps(message_dict)))
|
2013-06-18 20:02:45 +02:00
|
|
|
|
2013-07-08 21:37:58 +02:00
|
|
|
def to_dict_cache_key_id(message_id, apply_markdown):
|
2016-06-10 00:12:34 +02:00
|
|
|
# type: (int, bool) -> text_type
|
|
|
|
return u'message_dict:%d:%d' % (message_id, apply_markdown)
|
2013-05-02 18:51:09 +02:00
|
|
|
|
2013-07-08 21:37:58 +02:00
|
|
|
def to_dict_cache_key(message, apply_markdown):
|
2016-06-10 00:12:34 +02:00
|
|
|
# type: (Message, bool) -> text_type
|
2013-07-08 21:37:58 +02:00
|
|
|
return to_dict_cache_key_id(message.id, apply_markdown)
|
2013-04-22 16:29:57 +02:00
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
class Message(ModelReprMixin, models.Model):
|
2016-06-13 10:22:56 +02:00
|
|
|
sender = models.ForeignKey(UserProfile) # type: UserProfile
|
|
|
|
recipient = models.ForeignKey(Recipient) # type: Recipient
|
|
|
|
subject = models.CharField(max_length=MAX_SUBJECT_LENGTH, db_index=True) # type: text_type
|
|
|
|
content = models.TextField() # type: text_type
|
|
|
|
rendered_content = models.TextField(null=True) # type: Optional[text_type]
|
|
|
|
rendered_content_version = models.IntegerField(null=True) # type: Optional[int]
|
|
|
|
pub_date = models.DateTimeField('date published', db_index=True) # type: datetime.datetime
|
|
|
|
sending_client = models.ForeignKey(Client) # type: Client
|
|
|
|
last_edit_time = models.DateTimeField(null=True) # type: Optional[datetime.datetime]
|
|
|
|
edit_history = models.TextField(null=True) # type: Optional[text_type]
|
|
|
|
has_attachment = models.BooleanField(default=False, db_index=True) # type: bool
|
|
|
|
has_image = models.BooleanField(default=False, db_index=True) # type: bool
|
|
|
|
has_link = models.BooleanField(default=False, db_index=True) # type: bool
|
2014-02-21 17:44:48 +01:00
|
|
|
|
2016-07-14 17:48:11 +02:00
|
|
|
def topic_name(self):
|
|
|
|
# type: () -> text_type
|
|
|
|
"""
|
|
|
|
Please start using this helper to facilitate an
|
|
|
|
eventual switch over to a separate topic table.
|
|
|
|
"""
|
|
|
|
return self.subject
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
def __unicode__(self):
|
|
|
|
# type: () -> text_type
|
Give our models meaningful reprs.
>>> from zephyr.models import UserProfile, Recipient, Zephyr, ZephyrClass
>>> for klass in [UserProfile, Recipient, Zephyr, ZephyrClass]:
... print klass.objects.all()[:2]
...
[<UserProfile: othello>, <UserProfile: iago>]
[<Recipient: Verona (1, class)>, <Recipient: Denmark (2, class)>]
[<Zephyr: Scotland / Scotland3 / <UserProfile: prospero>>, <Zephyr: Venice / Venice3 / <UserProfile: iago>>]
[<ZephyrClass: Verona>, <ZephyrClass: Denmark>]
(imported from commit 9998ffe40800213a5425990d6e85f5c5a43a5355)
2012-08-29 16:15:06 +02:00
|
|
|
display_recipient = get_display_recipient(self.recipient)
|
2016-06-12 09:36:05 +02:00
|
|
|
return u"<Message: %s / %s / %r>" % (display_recipient, self.subject, self.sender)
|
Give our models meaningful reprs.
>>> from zephyr.models import UserProfile, Recipient, Zephyr, ZephyrClass
>>> for klass in [UserProfile, Recipient, Zephyr, ZephyrClass]:
... print klass.objects.all()[:2]
...
[<UserProfile: othello>, <UserProfile: iago>]
[<Recipient: Verona (1, class)>, <Recipient: Denmark (2, class)>]
[<Zephyr: Scotland / Scotland3 / <UserProfile: prospero>>, <Zephyr: Venice / Venice3 / <UserProfile: iago>>]
[<ZephyrClass: Verona>, <ZephyrClass: Denmark>]
(imported from commit 9998ffe40800213a5425990d6e85f5c5a43a5355)
2012-08-29 16:15:06 +02:00
|
|
|
|
2013-08-22 16:56:37 +02:00
|
|
|
def get_realm(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> Realm
|
2013-08-22 16:56:37 +02:00
|
|
|
return self.sender.realm
|
|
|
|
|
2013-09-04 22:44:45 +02:00
|
|
|
def render_markdown(self, content, domain=None):
|
2016-06-12 13:19:24 +02:00
|
|
|
# type: (text_type, Optional[text_type]) -> text_type
|
2013-06-28 16:02:58 +02:00
|
|
|
"""Return HTML for given markdown. Bugdown may add properties to the
|
|
|
|
message object such as `mentions_user_ids` and `mentions_wildcard`.
|
|
|
|
These are only on this Django object and are not saved in the
|
|
|
|
database.
|
|
|
|
"""
|
2016-07-25 23:55:07 +02:00
|
|
|
# TODO: see #1379 to eliminate bugdown dependencies
|
2013-08-09 19:15:44 +02:00
|
|
|
global bugdown
|
|
|
|
if bugdown is None:
|
2016-07-02 14:57:26 +02:00
|
|
|
import zerver.lib.bugdown as bugdown
|
|
|
|
# 'from zerver.lib import bugdown' gives mypy error in python 3 mode.
|
2013-06-28 16:02:58 +02:00
|
|
|
|
|
|
|
self.mentions_wildcard = False
|
2014-01-27 16:56:01 +01:00
|
|
|
self.is_me_message = False
|
2016-01-25 21:12:34 +01:00
|
|
|
self.mentions_user_ids = set() # type: Set[int]
|
|
|
|
self.user_ids_with_alert_words = set() # type: Set[int]
|
2013-06-28 16:02:58 +02:00
|
|
|
|
2013-09-04 22:44:45 +02:00
|
|
|
if not domain:
|
|
|
|
domain = self.sender.realm.domain
|
2016-07-27 01:45:29 +02:00
|
|
|
if self.sending_client.name == "zephyr_mirror" and self.sender.realm.is_zephyr_mirror_realm:
|
2013-07-29 23:57:26 +02:00
|
|
|
# Use slightly customized Markdown processor for content
|
|
|
|
# delivered via zephyr_mirror
|
2016-07-27 02:04:11 +02:00
|
|
|
domain = u"zephyr_mirror"
|
2013-11-08 02:00:12 +01:00
|
|
|
rendered_content = bugdown.convert(content, domain, self)
|
|
|
|
|
2016-07-10 22:58:46 +02:00
|
|
|
self.is_me_message = Message.is_status_message(content, rendered_content)
|
2013-11-08 02:00:12 +01:00
|
|
|
|
|
|
|
return rendered_content
|
2013-06-28 16:02:58 +02:00
|
|
|
|
2013-07-08 20:46:58 +02:00
|
|
|
def set_rendered_content(self, rendered_content, save = False):
|
2016-06-12 13:19:24 +02:00
|
|
|
# type: (text_type, bool) -> bool
|
2013-06-28 16:02:58 +02:00
|
|
|
"""Set the content on the message.
|
|
|
|
"""
|
2016-07-25 23:55:07 +02:00
|
|
|
# TODO: see #1379 to eliminate bugdown dependencies
|
2013-08-09 19:15:44 +02:00
|
|
|
global bugdown
|
|
|
|
if bugdown is None:
|
2016-07-02 14:57:26 +02:00
|
|
|
import zerver.lib.bugdown as bugdown
|
|
|
|
# 'from zerver.lib import bugdown' gives mypy error in python 3 mode.
|
2013-06-28 16:02:58 +02:00
|
|
|
|
|
|
|
self.rendered_content = rendered_content
|
|
|
|
self.rendered_content_version = bugdown.version
|
|
|
|
|
2013-07-08 20:46:58 +02:00
|
|
|
if self.rendered_content is not None:
|
|
|
|
if save:
|
2013-09-20 21:25:51 +02:00
|
|
|
self.save_rendered_content()
|
2013-07-08 20:46:58 +02:00
|
|
|
return True
|
|
|
|
else:
|
2013-06-28 16:02:58 +02:00
|
|
|
return False
|
|
|
|
|
2013-09-20 21:25:51 +02:00
|
|
|
def save_rendered_content(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> None
|
2013-09-20 21:25:51 +02:00
|
|
|
self.save(update_fields=["rendered_content", "rendered_content_version"])
|
|
|
|
|
2013-09-04 22:44:45 +02:00
|
|
|
def maybe_render_content(self, domain, save = False):
|
2016-06-12 13:19:24 +02:00
|
|
|
# type: (Optional[text_type], bool) -> bool
|
2013-06-28 16:02:58 +02:00
|
|
|
"""Render the markdown if there is no existing rendered_content"""
|
2016-07-25 23:55:07 +02:00
|
|
|
# TODO: see #1379 to eliminate bugdown dependencies
|
2013-08-09 19:15:44 +02:00
|
|
|
global bugdown
|
|
|
|
if bugdown is None:
|
2016-07-02 14:57:26 +02:00
|
|
|
import zerver.lib.bugdown as bugdown
|
|
|
|
# 'from zerver.lib import bugdown' gives mypy error in python 3 mode.
|
2013-08-09 19:15:44 +02:00
|
|
|
|
2013-09-21 16:46:28 +02:00
|
|
|
if Message.need_to_render_content(self.rendered_content, self.rendered_content_version):
|
2013-09-04 22:44:45 +02:00
|
|
|
return self.set_rendered_content(self.render_markdown(self.content, domain), save)
|
2013-06-28 16:02:58 +02:00
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
2013-09-21 16:46:28 +02:00
|
|
|
@staticmethod
|
|
|
|
def need_to_render_content(rendered_content, rendered_content_version):
|
2016-06-12 13:19:24 +02:00
|
|
|
# type: (Optional[text_type], int) -> bool
|
2016-01-24 05:26:29 +01:00
|
|
|
return rendered_content is None or rendered_content_version < bugdown.version
|
2013-09-21 16:46:28 +02:00
|
|
|
|
2013-06-28 16:02:58 +02:00
|
|
|
def to_dict(self, apply_markdown):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (bool) -> Dict[str, Any]
|
2013-06-28 16:02:58 +02:00
|
|
|
return extract_message_dict(self.to_dict_json(apply_markdown))
|
2013-06-18 20:02:45 +02:00
|
|
|
|
|
|
|
@cache_with_key(to_dict_cache_key, timeout=3600*24)
|
2013-06-28 16:02:58 +02:00
|
|
|
def to_dict_json(self, apply_markdown):
|
2016-06-09 22:40:04 +02:00
|
|
|
# type: (bool) -> binary_type
|
2016-07-08 02:35:05 +02:00
|
|
|
return self.to_dict_uncached(apply_markdown)
|
2013-04-25 20:41:54 +02:00
|
|
|
|
2013-06-28 16:02:58 +02:00
|
|
|
def to_dict_uncached(self, apply_markdown):
|
2016-07-08 02:35:05 +02:00
|
|
|
return stringify_message_dict(self.to_dict_uncached_helper(apply_markdown))
|
|
|
|
|
|
|
|
def to_dict_uncached_helper(self, apply_markdown):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (bool) -> Dict[str, Any]
|
2013-09-21 17:40:20 +02:00
|
|
|
return Message.build_message_dict(
|
|
|
|
apply_markdown = apply_markdown,
|
|
|
|
message = self,
|
|
|
|
message_id = self.id,
|
|
|
|
last_edit_time = self.last_edit_time,
|
|
|
|
edit_history = self.edit_history,
|
|
|
|
content = self.content,
|
|
|
|
subject = self.subject,
|
|
|
|
pub_date = self.pub_date,
|
|
|
|
rendered_content = self.rendered_content,
|
|
|
|
rendered_content_version = self.rendered_content_version,
|
|
|
|
sender_id = self.sender.id,
|
|
|
|
sender_email = self.sender.email,
|
|
|
|
sender_realm_domain = self.sender.realm.domain,
|
|
|
|
sender_full_name = self.sender.full_name,
|
|
|
|
sender_short_name = self.sender.short_name,
|
|
|
|
sender_avatar_source = self.sender.avatar_source,
|
2014-07-18 00:18:06 +02:00
|
|
|
sender_is_mirror_dummy = self.sender.is_mirror_dummy,
|
2013-09-21 17:40:20 +02:00
|
|
|
sending_client_name = self.sending_client.name,
|
|
|
|
recipient_id = self.recipient.id,
|
|
|
|
recipient_type = self.recipient.type,
|
|
|
|
recipient_type_id = self.recipient.type_id,
|
|
|
|
)
|
|
|
|
|
2013-09-21 18:43:43 +02:00
|
|
|
@staticmethod
|
|
|
|
def build_dict_from_raw_db_row(row, apply_markdown):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (Dict[str, Any], bool) -> Dict[str, Any]
|
2013-09-21 18:43:43 +02:00
|
|
|
'''
|
|
|
|
row is a row from a .values() call, and it needs to have
|
|
|
|
all the relevant fields populated
|
|
|
|
'''
|
|
|
|
return Message.build_message_dict(
|
|
|
|
apply_markdown = apply_markdown,
|
|
|
|
message = None,
|
|
|
|
message_id = row['id'],
|
|
|
|
last_edit_time = row['last_edit_time'],
|
|
|
|
edit_history = row['edit_history'],
|
|
|
|
content = row['content'],
|
|
|
|
subject = row['subject'],
|
|
|
|
pub_date = row['pub_date'],
|
|
|
|
rendered_content = row['rendered_content'],
|
|
|
|
rendered_content_version = row['rendered_content_version'],
|
|
|
|
sender_id = row['sender_id'],
|
|
|
|
sender_email = row['sender__email'],
|
|
|
|
sender_realm_domain = row['sender__realm__domain'],
|
|
|
|
sender_full_name = row['sender__full_name'],
|
|
|
|
sender_short_name = row['sender__short_name'],
|
|
|
|
sender_avatar_source = row['sender__avatar_source'],
|
2014-07-18 00:18:06 +02:00
|
|
|
sender_is_mirror_dummy = row['sender__is_mirror_dummy'],
|
2013-09-21 18:43:43 +02:00
|
|
|
sending_client_name = row['sending_client__name'],
|
|
|
|
recipient_id = row['recipient_id'],
|
|
|
|
recipient_type = row['recipient__type'],
|
|
|
|
recipient_type_id = row['recipient__type_id'],
|
|
|
|
)
|
|
|
|
|
2013-09-21 17:40:20 +02:00
|
|
|
@staticmethod
|
|
|
|
def build_message_dict(
|
|
|
|
apply_markdown,
|
|
|
|
message,
|
|
|
|
message_id,
|
|
|
|
last_edit_time,
|
|
|
|
edit_history,
|
|
|
|
content,
|
|
|
|
subject,
|
|
|
|
pub_date,
|
|
|
|
rendered_content,
|
|
|
|
rendered_content_version,
|
|
|
|
sender_id,
|
|
|
|
sender_email,
|
|
|
|
sender_realm_domain,
|
|
|
|
sender_full_name,
|
|
|
|
sender_short_name,
|
|
|
|
sender_avatar_source,
|
2014-07-18 00:18:06 +02:00
|
|
|
sender_is_mirror_dummy,
|
2013-09-21 17:40:20 +02:00
|
|
|
sending_client_name,
|
|
|
|
recipient_id,
|
|
|
|
recipient_type,
|
|
|
|
recipient_type_id,
|
|
|
|
):
|
2016-06-12 13:19:24 +02:00
|
|
|
# type: (bool, Message, int, datetime.datetime, text_type, text_type, text_type, datetime.datetime, text_type, Optional[int], int, text_type, text_type, text_type, text_type, text_type, bool, text_type, int, int, int) -> Dict[str, Any]
|
2016-07-25 23:55:07 +02:00
|
|
|
# TODO: see #1379 to eliminate bugdown dependencies
|
2013-08-09 19:15:44 +02:00
|
|
|
global bugdown
|
|
|
|
if bugdown is None:
|
2016-07-02 14:57:26 +02:00
|
|
|
import zerver.lib.bugdown as bugdown
|
|
|
|
# 'from zerver.lib import bugdown' gives mypy error in python 3 mode.
|
2013-09-21 15:41:39 +02:00
|
|
|
|
2013-09-21 16:32:29 +02:00
|
|
|
avatar_url = get_avatar_url(sender_avatar_source, sender_email)
|
|
|
|
|
2013-09-21 15:41:39 +02:00
|
|
|
display_recipient = get_display_recipient_by_id(
|
|
|
|
recipient_id,
|
|
|
|
recipient_type,
|
|
|
|
recipient_type_id
|
|
|
|
)
|
|
|
|
|
|
|
|
if recipient_type == Recipient.STREAM:
|
2012-12-03 19:49:12 +01:00
|
|
|
display_type = "stream"
|
2013-09-21 15:41:39 +02:00
|
|
|
elif recipient_type in (Recipient.HUDDLE, Recipient.PERSONAL):
|
2016-06-12 00:47:19 +02:00
|
|
|
assert not isinstance(display_recipient, text_type)
|
2012-12-03 19:49:12 +01:00
|
|
|
display_type = "private"
|
|
|
|
if len(display_recipient) == 1:
|
|
|
|
# add the sender in if this isn't a message between
|
|
|
|
# someone and his self, preserving ordering
|
2013-09-21 16:19:52 +02:00
|
|
|
recip = {'email': sender_email,
|
|
|
|
'domain': sender_realm_domain,
|
|
|
|
'full_name': sender_full_name,
|
|
|
|
'short_name': sender_short_name,
|
2014-07-18 00:18:06 +02:00
|
|
|
'id': sender_id,
|
|
|
|
'is_mirror_dummy': sender_is_mirror_dummy}
|
2012-12-03 19:49:12 +01:00
|
|
|
if recip['email'] < display_recipient[0]['email']:
|
|
|
|
display_recipient = [recip, display_recipient[0]]
|
|
|
|
elif recip['email'] > display_recipient[0]['email']:
|
|
|
|
display_recipient = [display_recipient[0], recip]
|
|
|
|
|
2012-10-24 20:16:26 +02:00
|
|
|
obj = dict(
|
2013-09-21 16:19:52 +02:00
|
|
|
id = message_id,
|
|
|
|
sender_email = sender_email,
|
|
|
|
sender_full_name = sender_full_name,
|
|
|
|
sender_short_name = sender_short_name,
|
|
|
|
sender_domain = sender_realm_domain,
|
|
|
|
sender_id = sender_id,
|
2012-12-03 19:49:12 +01:00
|
|
|
type = display_type,
|
|
|
|
display_recipient = display_recipient,
|
2013-09-21 15:41:39 +02:00
|
|
|
recipient_id = recipient_id,
|
2013-09-21 16:19:52 +02:00
|
|
|
subject = subject,
|
|
|
|
timestamp = datetime_to_timestamp(pub_date),
|
|
|
|
gravatar_hash = gravatar_hash(sender_email), # Deprecated June 2013
|
2013-09-21 16:32:29 +02:00
|
|
|
avatar_url = avatar_url,
|
2013-09-21 16:19:52 +02:00
|
|
|
client = sending_client_name)
|
2012-10-24 20:16:26 +02:00
|
|
|
|
2013-09-21 16:19:52 +02:00
|
|
|
obj['subject_links'] = bugdown.subject_links(sender_realm_domain.lower(), subject)
|
2013-07-12 22:29:25 +02:00
|
|
|
|
2013-09-21 16:19:52 +02:00
|
|
|
if last_edit_time != None:
|
|
|
|
obj['last_edit_timestamp'] = datetime_to_timestamp(last_edit_time)
|
|
|
|
obj['edit_history'] = ujson.loads(edit_history)
|
2013-07-08 20:46:58 +02:00
|
|
|
|
|
|
|
if apply_markdown:
|
2013-09-21 17:29:27 +02:00
|
|
|
if Message.need_to_render_content(rendered_content, rendered_content_version):
|
2013-09-21 18:43:43 +02:00
|
|
|
if message is None:
|
|
|
|
# We really shouldn't be rendering objects in this method, but there is
|
|
|
|
# a scenario where we upgrade the version of bugdown and fail to run
|
|
|
|
# management commands to re-render historical messages, and then we
|
|
|
|
# need to have side effects. This method is optimized to not need full
|
|
|
|
# blown ORM objects, but the bugdown renderer is unfortunately highly
|
|
|
|
# coupled to Message, and we also need to persist the new rendered content.
|
|
|
|
# If we don't have a message object passed in, we get one here. The cost
|
|
|
|
# of going to the DB here should be overshadowed by the cost of rendering
|
|
|
|
# and updating the row.
|
2016-07-25 23:55:07 +02:00
|
|
|
# TODO: see #1379 to eliminate bugdown dependencies
|
2013-09-21 18:43:43 +02:00
|
|
|
message = Message.objects.select_related().get(id=message_id)
|
|
|
|
|
2013-09-21 17:29:27 +02:00
|
|
|
# It's unfortunate that we need to have side effects on the message
|
|
|
|
# in some cases.
|
|
|
|
rendered_content = message.render_markdown(content, sender_realm_domain)
|
|
|
|
message.set_rendered_content(rendered_content, True)
|
|
|
|
|
|
|
|
if rendered_content is not None:
|
|
|
|
obj['content'] = rendered_content
|
2013-06-28 16:02:58 +02:00
|
|
|
else:
|
2016-06-12 13:19:24 +02:00
|
|
|
obj['content'] = u'<p>[Zulip note: Sorry, we could not understand the formatting of your message]</p>'
|
2013-06-28 16:02:58 +02:00
|
|
|
|
2012-10-24 20:51:45 +02:00
|
|
|
obj['content_type'] = 'text/html'
|
2012-10-04 00:13:03 +02:00
|
|
|
else:
|
2013-09-21 16:19:52 +02:00
|
|
|
obj['content'] = content
|
2012-10-24 20:51:45 +02:00
|
|
|
obj['content_type'] = 'text/x-markdown'
|
2012-10-24 20:16:26 +02:00
|
|
|
|
|
|
|
return obj
|
2012-08-30 19:56:15 +02:00
|
|
|
|
2012-09-27 19:58:42 +02:00
|
|
|
def to_log_dict(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> Dict[str, Any]
|
2012-10-24 20:16:26 +02:00
|
|
|
return dict(
|
|
|
|
id = self.id,
|
2016-05-19 07:35:02 +02:00
|
|
|
sender_id = self.sender.id,
|
2013-03-28 20:43:34 +01:00
|
|
|
sender_email = self.sender.email,
|
2013-05-02 18:56:42 +02:00
|
|
|
sender_domain = self.sender.realm.domain,
|
2012-10-24 20:16:26 +02:00
|
|
|
sender_full_name = self.sender.full_name,
|
|
|
|
sender_short_name = self.sender.short_name,
|
|
|
|
sending_client = self.sending_client.name,
|
|
|
|
type = self.recipient.type_name(),
|
2012-12-03 19:49:12 +01:00
|
|
|
recipient = get_display_recipient(self.recipient),
|
2016-07-15 06:36:45 +02:00
|
|
|
subject = self.topic_name(),
|
2012-10-24 20:16:26 +02:00
|
|
|
content = self.content,
|
2012-12-11 23:08:17 +01:00
|
|
|
timestamp = datetime_to_timestamp(self.pub_date))
|
2012-09-27 19:58:42 +02:00
|
|
|
|
2013-09-20 02:19:25 +02:00
|
|
|
@staticmethod
|
2013-09-21 18:43:43 +02:00
|
|
|
def get_raw_db_rows(needed_ids):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (List[int]) -> List[Dict[str, Any]]
|
2013-09-20 02:19:25 +02:00
|
|
|
# This is a special purpose function optimized for
|
|
|
|
# callers like get_old_messages_backend().
|
2013-09-21 18:43:43 +02:00
|
|
|
fields = [
|
|
|
|
'id',
|
|
|
|
'subject',
|
|
|
|
'pub_date',
|
|
|
|
'last_edit_time',
|
|
|
|
'edit_history',
|
|
|
|
'content',
|
|
|
|
'rendered_content',
|
|
|
|
'rendered_content_version',
|
|
|
|
'recipient_id',
|
|
|
|
'recipient__type',
|
|
|
|
'recipient__type_id',
|
|
|
|
'sender_id',
|
|
|
|
'sending_client__name',
|
|
|
|
'sender__email',
|
|
|
|
'sender__full_name',
|
|
|
|
'sender__short_name',
|
|
|
|
'sender__realm__id',
|
|
|
|
'sender__realm__domain',
|
2014-07-18 00:18:06 +02:00
|
|
|
'sender__avatar_source',
|
|
|
|
'sender__is_mirror_dummy',
|
2013-09-21 18:43:43 +02:00
|
|
|
]
|
|
|
|
return Message.objects.filter(id__in=needed_ids).values(*fields)
|
2013-09-20 02:19:25 +02:00
|
|
|
|
2012-11-28 00:50:33 +01:00
|
|
|
@classmethod
|
|
|
|
def remove_unreachable(cls):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (Any) -> None
|
2012-11-28 00:50:33 +01:00
|
|
|
"""Remove all Messages that are not referred to by any UserMessage."""
|
|
|
|
cls.objects.exclude(id__in = UserMessage.objects.values('message_id')).delete()
|
|
|
|
|
2013-12-31 22:42:38 +01:00
|
|
|
def sent_by_human(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> bool
|
2013-12-31 22:42:38 +01:00
|
|
|
sending_client = self.sending_client.name.lower()
|
|
|
|
|
|
|
|
return (sending_client in ('zulipandroid', 'zulipios', 'zulipdesktop',
|
|
|
|
'website', 'ios', 'android')) or \
|
|
|
|
('desktop app' in sending_client)
|
|
|
|
|
2014-02-21 21:18:38 +01:00
|
|
|
@staticmethod
|
|
|
|
def content_has_attachment(content):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type) -> Match
|
2016-06-12 15:44:39 +02:00
|
|
|
return re.search(r'[/\-]user[\-_]uploads[/\.-]', content)
|
2014-02-21 21:18:38 +01:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def content_has_image(content):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type) -> bool
|
2016-06-12 15:44:39 +02:00
|
|
|
return bool(re.search(r'[/\-]user[\-_]uploads[/\.-]\S+\.(bmp|gif|jpg|jpeg|png|webp)', content, re.IGNORECASE))
|
2014-02-21 21:18:38 +01:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def content_has_link(content):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type) -> bool
|
2014-02-21 21:18:38 +01:00
|
|
|
return 'http://' in content or 'https://' in content or '/user_uploads' in content
|
|
|
|
|
2016-07-10 22:58:46 +02:00
|
|
|
@staticmethod
|
|
|
|
def is_status_message(content, rendered_content):
|
|
|
|
# type: (text_type, text_type) -> bool
|
|
|
|
"""
|
|
|
|
Returns True if content and rendered_content are from 'me_message'
|
|
|
|
"""
|
|
|
|
if content.startswith('/me ') and '\n' not in content:
|
|
|
|
if rendered_content.startswith('<p>') and rendered_content.endswith('</p>'):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2014-02-21 21:18:38 +01:00
|
|
|
def update_calculated_fields(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> None
|
2014-02-21 21:18:38 +01:00
|
|
|
# TODO: rendered_content could also be considered a calculated field
|
|
|
|
content = self.content
|
|
|
|
self.has_attachment = bool(Message.content_has_attachment(content))
|
|
|
|
self.has_image = bool(Message.content_has_image(content))
|
|
|
|
self.has_link = bool(Message.content_has_link(content))
|
|
|
|
|
|
|
|
@receiver(pre_save, sender=Message)
|
|
|
|
def pre_save_message(sender, **kwargs):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (Any, **Any) -> None
|
2014-02-21 21:18:38 +01:00
|
|
|
if kwargs['update_fields'] is None or "content" in kwargs['update_fields']:
|
|
|
|
message = kwargs['instance']
|
|
|
|
message.update_calculated_fields()
|
|
|
|
|
2014-07-15 21:03:51 +02:00
|
|
|
def get_context_for_message(message):
|
2016-06-12 14:43:15 +02:00
|
|
|
# type: (Message) -> Sequence[Message]
|
|
|
|
# TODO: Change return type to QuerySet[Message]
|
2014-07-15 21:03:51 +02:00
|
|
|
return Message.objects.filter(
|
|
|
|
recipient_id=message.recipient_id,
|
|
|
|
subject=message.subject,
|
|
|
|
id__lt=message.id,
|
2015-02-21 02:46:19 +01:00
|
|
|
pub_date__gt=message.pub_date - timedelta(minutes=15),
|
|
|
|
).order_by('-id')[:10]
|
2014-07-15 21:03:51 +02:00
|
|
|
|
2016-07-08 02:25:55 +02:00
|
|
|
def flush_message(sender, **kwargs):
|
|
|
|
# type: (Any, **Any) -> None
|
|
|
|
message = kwargs['instance']
|
|
|
|
cache_delete(to_dict_cache_key(message, False))
|
|
|
|
cache_delete(to_dict_cache_key(message, True))
|
|
|
|
|
|
|
|
post_save.connect(flush_message, sender=Message)
|
2014-07-15 21:03:51 +02:00
|
|
|
|
2016-04-01 08:42:38 +02:00
|
|
|
# Whenever a message is sent, for each user current subscribed to the
|
|
|
|
# corresponding Recipient object, we add a row to the UserMessage
|
|
|
|
# table, which has has columns (id, user profile id, message id,
|
|
|
|
# flags) indicating which messages each user has received. This table
|
|
|
|
# allows us to quickly query any user's last 1000 messages to generate
|
|
|
|
# the home view.
|
|
|
|
#
|
|
|
|
# Additionally, the flags field stores metadata like whether the user
|
|
|
|
# has read the message, starred the message, collapsed or was
|
|
|
|
# mentioned the message, etc.
|
|
|
|
#
|
|
|
|
# UserMessage is the largest table in a Zulip installation, even
|
|
|
|
# though each row is only 4 integers.
|
2016-06-12 09:36:05 +02:00
|
|
|
class UserMessage(ModelReprMixin, models.Model):
|
2016-06-13 10:39:47 +02:00
|
|
|
user_profile = models.ForeignKey(UserProfile) # type: UserProfile
|
|
|
|
message = models.ForeignKey(Message) # type: Message
|
2012-09-07 17:04:41 +02:00
|
|
|
# We're not using the archived field for now, but create it anyway
|
|
|
|
# since this table will be an unpleasant one to do schema changes
|
|
|
|
# on later
|
2013-07-25 22:08:16 +02:00
|
|
|
ALL_FLAGS = ['read', 'starred', 'collapsed', 'mentioned', 'wildcard_mentioned',
|
2013-09-03 22:41:17 +02:00
|
|
|
'summarize_in_home', 'summarize_in_stream', 'force_expand', 'force_collapse',
|
2014-01-27 16:56:01 +01:00
|
|
|
'has_alert_word', "historical", 'is_me_message']
|
2016-06-13 10:39:47 +02:00
|
|
|
flags = BitField(flags=ALL_FLAGS, default=0) # type: BitHandler
|
2012-09-07 17:04:41 +02:00
|
|
|
|
2015-10-14 22:43:04 +02:00
|
|
|
class Meta(object):
|
2012-11-08 21:08:13 +01:00
|
|
|
unique_together = ("user_profile", "message")
|
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
def __unicode__(self):
|
|
|
|
# type: () -> text_type
|
2012-09-07 17:04:41 +02:00
|
|
|
display_recipient = get_display_recipient(self.message.recipient)
|
2016-06-12 09:36:05 +02:00
|
|
|
return u"<UserMessage: %s / %s (%s)>" % (display_recipient, self.user_profile.email, self.flags_list())
|
2012-09-07 17:04:41 +02:00
|
|
|
|
2013-06-19 21:05:22 +02:00
|
|
|
def flags_list(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> List[str]
|
2013-06-19 21:05:22 +02:00
|
|
|
return [flag for flag in self.flags.keys() if getattr(self.flags, flag).is_set]
|
2013-03-11 15:47:29 +01:00
|
|
|
|
2013-06-19 20:43:45 +02:00
|
|
|
def parse_usermessage_flags(val):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (int) -> List[str]
|
2013-06-19 20:43:45 +02:00
|
|
|
flags = []
|
|
|
|
mask = 1
|
|
|
|
for flag in UserMessage.ALL_FLAGS:
|
|
|
|
if val & mask:
|
|
|
|
flags.append(flag)
|
|
|
|
mask <<= 1
|
|
|
|
return flags
|
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
class Attachment(ModelReprMixin, models.Model):
|
2016-03-24 20:24:01 +01:00
|
|
|
MAX_FILENAME_LENGTH = 100
|
2016-06-13 10:57:50 +02:00
|
|
|
file_name = models.CharField(max_length=MAX_FILENAME_LENGTH, db_index=True) # type: text_type
|
2016-03-24 20:24:01 +01:00
|
|
|
# path_id is a storage location agnostic representation of the path of the file.
|
|
|
|
# If the path of a file is http://localhost:9991/user_uploads/a/b/abc/temp_file.py
|
|
|
|
# then its path_id will be a/b/abc/temp_file.py.
|
2016-06-13 10:57:50 +02:00
|
|
|
path_id = models.TextField(db_index=True) # type: text_type
|
|
|
|
owner = models.ForeignKey(UserProfile) # type: UserProfile
|
2016-06-17 18:49:36 +02:00
|
|
|
realm = models.ForeignKey(Realm, blank=True, null=True) # type: Realm
|
|
|
|
is_realm_public = models.BooleanField(default=False) # type: bool
|
2016-06-13 10:57:50 +02:00
|
|
|
messages = models.ManyToManyField(Message) # type: Manager
|
|
|
|
create_time = models.DateTimeField(default=timezone.now, db_index=True) # type: datetime.datetime
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
def __unicode__(self):
|
|
|
|
# type: () -> text_type
|
|
|
|
return u"<Attachment: %s>" % (self.file_name,)
|
2016-03-24 20:24:01 +01:00
|
|
|
|
|
|
|
def is_claimed(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> bool
|
2016-03-24 20:24:01 +01:00
|
|
|
return self.messages.count() > 0
|
|
|
|
|
|
|
|
def get_url(self):
|
2016-06-12 14:56:47 +02:00
|
|
|
# type: () -> text_type
|
|
|
|
return u"/user_uploads/%s" % (self.path_id)
|
2016-03-24 20:24:01 +01:00
|
|
|
|
|
|
|
def get_attachments_by_owner_id(uid):
|
2016-06-12 14:43:15 +02:00
|
|
|
# type: (int) -> Sequence[Attachment]
|
|
|
|
# TODO: Change return type to QuerySet[Attachment]
|
2016-03-24 20:24:01 +01:00
|
|
|
return Attachment.objects.filter(owner=uid).select_related('owner')
|
|
|
|
|
|
|
|
def get_owners_from_file_name(file_name):
|
2016-06-12 14:43:15 +02:00
|
|
|
# type: (str) -> Sequence[Attachment]
|
|
|
|
# TODO: Change return type to QuerySet[Attachment]
|
2016-03-24 20:24:01 +01:00
|
|
|
# The returned vaule will list of owners since different users can upload
|
|
|
|
# same files with the same filename.
|
|
|
|
return Attachment.objects.filter(file_name=file_name).select_related('owner')
|
|
|
|
|
|
|
|
def get_old_unclaimed_attachments(weeks_ago):
|
2016-06-12 14:43:15 +02:00
|
|
|
# type: (int) -> Sequence[Attachment]
|
|
|
|
# TODO: Change return type to QuerySet[Attachment]
|
2016-03-24 20:24:01 +01:00
|
|
|
delta_weeks_ago = timezone.now() - datetime.timedelta(weeks=weeks_ago)
|
|
|
|
old_attachments = Attachment.objects.filter(messages=None, create_time__lt=delta_weeks_ago)
|
|
|
|
return old_attachments
|
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
class Subscription(ModelReprMixin, models.Model):
|
2016-06-13 11:01:50 +02:00
|
|
|
user_profile = models.ForeignKey(UserProfile) # type: UserProfile
|
|
|
|
recipient = models.ForeignKey(Recipient) # type: Recipient
|
|
|
|
active = models.BooleanField(default=True) # type: bool
|
|
|
|
in_home_view = models.NullBooleanField(default=True) # type: Optional[bool]
|
2012-08-29 17:50:36 +02:00
|
|
|
|
2016-07-11 15:54:15 +02:00
|
|
|
DEFAULT_STREAM_COLOR = u"#c2c2c2"
|
2016-06-13 11:01:50 +02:00
|
|
|
color = models.CharField(max_length=10, default=DEFAULT_STREAM_COLOR) # type: text_type
|
2016-07-01 07:26:09 +02:00
|
|
|
pin_to_top = models.BooleanField(default=False) # type: bool
|
2014-02-05 23:00:46 +01:00
|
|
|
|
2016-06-13 11:01:50 +02:00
|
|
|
desktop_notifications = models.BooleanField(default=True) # type: bool
|
|
|
|
audible_notifications = models.BooleanField(default=True) # type: bool
|
2014-02-05 23:00:46 +01:00
|
|
|
|
|
|
|
# Combination desktop + audible notifications superseded by the
|
|
|
|
# above.
|
2016-06-13 11:01:50 +02:00
|
|
|
notifications = models.BooleanField(default=False) # type: bool
|
2013-03-29 20:57:02 +01:00
|
|
|
|
2015-10-14 22:43:04 +02:00
|
|
|
class Meta(object):
|
2012-11-07 22:33:38 +01:00
|
|
|
unique_together = ("user_profile", "recipient")
|
|
|
|
|
2016-06-12 09:36:05 +02:00
|
|
|
def __unicode__(self):
|
|
|
|
# type: () -> text_type
|
|
|
|
return u"<Subscription: %r -> %s>" % (self.user_profile, self.recipient)
|
2012-08-28 22:56:21 +02:00
|
|
|
|
2013-03-26 19:09:45 +01:00
|
|
|
@cache_with_key(user_profile_by_id_cache_key, timeout=3600*24*7)
|
2013-03-26 18:51:55 +01:00
|
|
|
def get_user_profile_by_id(uid):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (int) -> UserProfile
|
2013-03-26 18:51:55 +01:00
|
|
|
return UserProfile.objects.select_related().get(id=uid)
|
|
|
|
|
2013-03-28 20:20:31 +01:00
|
|
|
@cache_with_key(user_profile_by_email_cache_key, timeout=3600*24*7)
|
|
|
|
def get_user_profile_by_email(email):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type) -> UserProfile
|
2014-01-08 00:07:53 +01:00
|
|
|
return UserProfile.objects.select_related().get(email__iexact=email.strip())
|
2013-03-28 20:20:31 +01:00
|
|
|
|
2013-10-23 23:16:39 +02:00
|
|
|
@cache_with_key(active_user_dicts_in_realm_cache_key, timeout=3600*24*7)
|
|
|
|
def get_active_user_dicts_in_realm(realm):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (Realm) -> List[Dict[str, Any]]
|
2016-04-27 23:44:26 +02:00
|
|
|
return UserProfile.objects.filter(realm=realm, is_active=True) \
|
|
|
|
.values(*active_user_dict_fields)
|
2013-08-28 20:25:31 +02:00
|
|
|
|
2014-02-26 00:12:14 +01:00
|
|
|
@cache_with_key(active_bot_dicts_in_realm_cache_key, timeout=3600*24*7)
|
|
|
|
def get_active_bot_dicts_in_realm(realm):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (Realm) -> List[Dict[str, Any]]
|
2016-04-27 23:57:38 +02:00
|
|
|
return UserProfile.objects.filter(realm=realm, is_active=True, is_bot=True) \
|
|
|
|
.values(*active_bot_dict_fields)
|
2014-02-26 00:12:14 +01:00
|
|
|
|
2016-04-27 23:22:52 +02:00
|
|
|
def get_owned_bot_dicts(user_profile, include_all_realm_bots_if_admin=True):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (UserProfile, bool) -> List[Dict[str, Any]]
|
2016-04-27 23:22:52 +02:00
|
|
|
if user_profile.is_realm_admin and include_all_realm_bots_if_admin:
|
|
|
|
result = get_active_bot_dicts_in_realm(user_profile.realm)
|
|
|
|
else:
|
|
|
|
result = UserProfile.objects.filter(realm=user_profile.realm, is_active=True, is_bot=True,
|
|
|
|
bot_owner=user_profile).values(*active_bot_dict_fields)
|
|
|
|
return [{'email': botdict['email'],
|
|
|
|
'full_name': botdict['full_name'],
|
|
|
|
'api_key': botdict['api_key'],
|
|
|
|
'default_sending_stream': botdict['default_sending_stream__name'],
|
|
|
|
'default_events_register_stream': botdict['default_events_register_stream__name'],
|
|
|
|
'default_all_public_streams': botdict['default_all_public_streams'],
|
|
|
|
'owner': botdict['bot_owner__email'],
|
|
|
|
'avatar_url': get_avatar_url(botdict['avatar_source'], botdict['email']),
|
|
|
|
}
|
|
|
|
for botdict in result]
|
2014-02-26 00:12:14 +01:00
|
|
|
|
2013-04-08 18:27:07 +02:00
|
|
|
def get_prereg_user_by_email(email):
|
2016-06-12 14:56:47 +02:00
|
|
|
# type: (text_type) -> PreregistrationUser
|
2013-04-08 18:27:07 +02:00
|
|
|
# A user can be invited many times, so only return the result of the latest
|
|
|
|
# invite.
|
2014-01-08 00:07:53 +01:00
|
|
|
return PreregistrationUser.objects.filter(email__iexact=email.strip()).latest("invited_at")
|
2013-04-08 18:27:07 +02:00
|
|
|
|
2016-06-11 20:22:13 +02:00
|
|
|
def get_cross_realm_users():
|
|
|
|
# type: () -> Set[text_type]
|
|
|
|
admin_realm = get_realm(settings.ADMIN_DOMAIN)
|
|
|
|
admin_realm_domain_admins = {u.email for u in admin_realm.get_admin_users()}
|
|
|
|
return admin_realm_domain_admins.union(set(settings.CROSS_REALM_BOT_EMAILS))
|
|
|
|
|
2016-04-01 08:42:38 +02:00
|
|
|
# The Huddle class represents a group of individuals who have had a
|
|
|
|
# Group Private Message conversation together. The actual membership
|
|
|
|
# of the Huddle is stored in the Subscription table just like with
|
|
|
|
# Streams, and a hash of that list is stored in the huddle_hash field
|
|
|
|
# below, to support efficiently mapping from a set of users to the
|
|
|
|
# corresponding Huddle object.
|
2012-09-04 23:20:21 +02:00
|
|
|
class Huddle(models.Model):
|
2012-09-07 20:14:13 +02:00
|
|
|
# TODO: We should consider whether using
|
|
|
|
# CommaSeparatedIntegerField would be better.
|
2016-06-13 11:01:50 +02:00
|
|
|
huddle_hash = models.CharField(max_length=40, db_index=True, unique=True) # type: text_type
|
2012-09-04 23:20:21 +02:00
|
|
|
|
2012-10-20 18:02:58 +02:00
|
|
|
def get_huddle_hash(id_list):
|
2016-06-12 14:22:20 +02:00
|
|
|
# type: (List[int]) -> text_type
|
2012-09-05 17:38:09 +02:00
|
|
|
id_list = sorted(set(id_list))
|
2012-09-05 17:41:53 +02:00
|
|
|
hash_key = ",".join(str(x) for x in id_list)
|
2013-03-20 15:31:27 +01:00
|
|
|
return make_safe_digest(hash_key)
|
2012-10-20 18:02:58 +02:00
|
|
|
|
2013-03-26 18:17:55 +01:00
|
|
|
def huddle_hash_cache_key(huddle_hash):
|
2016-06-12 07:25:42 +02:00
|
|
|
# type: (text_type) -> text_type
|
|
|
|
return u"huddle_by_hash:%s" % (huddle_hash,)
|
2013-03-26 18:17:55 +01:00
|
|
|
|
2012-10-20 18:02:58 +02:00
|
|
|
def get_huddle(id_list):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (List[int]) -> Huddle
|
2012-10-20 18:02:58 +02:00
|
|
|
huddle_hash = get_huddle_hash(id_list)
|
2013-03-26 18:17:55 +01:00
|
|
|
return get_huddle_backend(huddle_hash, id_list)
|
|
|
|
|
2013-03-26 19:09:45 +01:00
|
|
|
@cache_with_key(lambda huddle_hash, id_list: huddle_hash_cache_key(huddle_hash), timeout=3600*24*7)
|
2013-03-26 18:17:55 +01:00
|
|
|
def get_huddle_backend(huddle_hash, id_list):
|
2016-06-12 14:56:47 +02:00
|
|
|
# type: (text_type, List[int]) -> Huddle
|
2012-10-19 23:40:44 +02:00
|
|
|
(huddle, created) = Huddle.objects.get_or_create(huddle_hash=huddle_hash)
|
|
|
|
if created:
|
2015-08-19 21:04:49 +02:00
|
|
|
with transaction.atomic():
|
2013-03-26 18:51:55 +01:00
|
|
|
recipient = Recipient.objects.create(type_id=huddle.id,
|
|
|
|
type=Recipient.HUDDLE)
|
|
|
|
subs_to_create = [Subscription(recipient=recipient,
|
|
|
|
user_profile=get_user_profile_by_id(user_profile_id))
|
|
|
|
for user_profile_id in id_list]
|
|
|
|
Subscription.objects.bulk_create(subs_to_create)
|
2012-10-19 23:40:44 +02:00
|
|
|
return huddle
|
2012-09-04 23:20:21 +02:00
|
|
|
|
2013-05-31 20:04:18 +02:00
|
|
|
def get_realm(domain):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (text_type) -> Optional[Realm]
|
2013-08-02 20:32:56 +02:00
|
|
|
if not domain:
|
|
|
|
return None
|
2013-05-31 20:04:18 +02:00
|
|
|
try:
|
|
|
|
return Realm.objects.get(domain__iexact=domain.strip())
|
|
|
|
except Realm.DoesNotExist:
|
|
|
|
return None
|
|
|
|
|
2012-10-29 19:43:00 +01:00
|
|
|
def clear_database():
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> None
|
2013-07-08 17:53:50 +02:00
|
|
|
pylibmc.Client(['127.0.0.1']).flush_all()
|
2016-01-25 21:12:34 +01:00
|
|
|
model = None # type: Any
|
2013-04-01 16:57:50 +02:00
|
|
|
for model in [Message, Stream, UserProfile, Recipient,
|
2012-11-27 18:26:51 +01:00
|
|
|
Realm, Subscription, Huddle, UserMessage, Client,
|
|
|
|
DefaultStream]:
|
2012-10-29 19:43:00 +01:00
|
|
|
model.objects.all().delete()
|
|
|
|
Session.objects.all().delete()
|
2012-11-08 23:02:16 +01:00
|
|
|
|
|
|
|
class UserActivity(models.Model):
|
2016-06-13 11:10:27 +02:00
|
|
|
user_profile = models.ForeignKey(UserProfile) # type: UserProfile
|
|
|
|
client = models.ForeignKey(Client) # type: Client
|
|
|
|
query = models.CharField(max_length=50, db_index=True) # type: text_type
|
2012-11-08 23:02:16 +01:00
|
|
|
|
2016-06-13 11:10:27 +02:00
|
|
|
count = models.IntegerField() # type: int
|
|
|
|
last_visit = models.DateTimeField('last visit') # type: datetime.datetime
|
2012-11-08 23:02:16 +01:00
|
|
|
|
2015-10-14 22:43:04 +02:00
|
|
|
class Meta(object):
|
2012-11-08 23:02:16 +01:00
|
|
|
unique_together = ("user_profile", "client", "query")
|
2012-11-27 18:26:51 +01:00
|
|
|
|
2013-09-06 21:52:12 +02:00
|
|
|
class UserActivityInterval(models.Model):
|
2016-06-13 11:10:27 +02:00
|
|
|
user_profile = models.ForeignKey(UserProfile) # type: UserProfile
|
|
|
|
start = models.DateTimeField('start time', db_index=True) # type: datetime.datetime
|
|
|
|
end = models.DateTimeField('end time', db_index=True) # type: datetime.datetime
|
2013-09-06 21:52:12 +02:00
|
|
|
|
2013-02-08 23:44:15 +01:00
|
|
|
class UserPresence(models.Model):
|
2016-06-13 11:10:27 +02:00
|
|
|
user_profile = models.ForeignKey(UserProfile) # type: UserProfile
|
|
|
|
client = models.ForeignKey(Client) # type: Client
|
2013-02-08 23:44:15 +01:00
|
|
|
|
|
|
|
# Valid statuses
|
|
|
|
ACTIVE = 1
|
|
|
|
IDLE = 2
|
|
|
|
|
2016-06-13 11:10:27 +02:00
|
|
|
timestamp = models.DateTimeField('presence changed') # type: datetime.datetime
|
|
|
|
status = models.PositiveSmallIntegerField(default=ACTIVE) # type: int
|
2013-02-08 23:44:15 +01:00
|
|
|
|
2013-09-13 23:33:11 +02:00
|
|
|
@staticmethod
|
|
|
|
def status_to_string(status):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (int) -> str
|
2013-09-13 23:33:11 +02:00
|
|
|
if status == UserPresence.ACTIVE:
|
|
|
|
return 'active'
|
|
|
|
elif status == UserPresence.IDLE:
|
|
|
|
return 'idle'
|
|
|
|
|
Optimize user presence/activity query.
The get_status_dict_by_realm helper gets called whenever our
realm user_presences cache expires, and it used to query these fields:
"zerver_userpresence"."id", "zerver_userpresence"."user_profile_id", "zerver_userpresence"."client_id", "zerver_userpresence"."timestamp", "zerver_userpresence"."status", "zerver_userprofile"."id", "zerver_userprofile"."password", "zerver_userprofile"."last_login", "zerver_userprofile"."is_superuser", "zerver_userprofile"."email", "zerver_userprofile"."is_staff", "zerver_userprofile"."is_active", "zerver_userprofile"."is_bot", "zerver_userprofile"."date_joined", "zerver_userprofile"."bot_owner_id", "zerver_userprofile"."full_name", "zerver_userprofile"."short_name", "zerver_userprofile"."pointer", "zerver_userprofile"."last_pointer_updater", "zerver_userprofile"."realm_id", "zerver_userprofile"."api_key", "zerver_userprofile"."enable_desktop_notifications", "zerver_userprofile"."enable_sounds", "zerver_userprofile"."enter_sends", "zerver_userprofile"."enable_offline_email_notifications", "zerver_userprofile"."last_reminder", "zerver_userprofile"."rate_limits", "zerver_userprofile"."avatar_source", "zerver_userprofile"."tutorial_status", "zerver_userprofile"."onboarding_steps", "zerver_userprofile"."invites_granted", "zerver_userprofile"."invites_used", "zerver_userprofile"."alert_words", "zerver_userprofile"."muted_topics", "zerver_client"."id", "zerver_client"."name"
Now it queries just the fields it needs:
"zerver_client"."name", "zerver_userpresence"."status", "zerver_userpresence"."timestamp", "zerver_userprofile"."email" FROM "zerver_userpresence"
Also, get_status_dict_by_realm is now namespaced under UserPresence as a static method.
(imported from commit be1266844b6bd28b6c615594796713c026a850a1)
2013-09-14 23:59:03 +02:00
|
|
|
@staticmethod
|
|
|
|
def get_status_dict_by_realm(realm_id):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: (int) -> defaultdict[Any, Dict[Any, Any]]
|
|
|
|
user_statuses = defaultdict(dict) # type: defaultdict[Any, Dict[Any, Any]]
|
Optimize user presence/activity query.
The get_status_dict_by_realm helper gets called whenever our
realm user_presences cache expires, and it used to query these fields:
"zerver_userpresence"."id", "zerver_userpresence"."user_profile_id", "zerver_userpresence"."client_id", "zerver_userpresence"."timestamp", "zerver_userpresence"."status", "zerver_userprofile"."id", "zerver_userprofile"."password", "zerver_userprofile"."last_login", "zerver_userprofile"."is_superuser", "zerver_userprofile"."email", "zerver_userprofile"."is_staff", "zerver_userprofile"."is_active", "zerver_userprofile"."is_bot", "zerver_userprofile"."date_joined", "zerver_userprofile"."bot_owner_id", "zerver_userprofile"."full_name", "zerver_userprofile"."short_name", "zerver_userprofile"."pointer", "zerver_userprofile"."last_pointer_updater", "zerver_userprofile"."realm_id", "zerver_userprofile"."api_key", "zerver_userprofile"."enable_desktop_notifications", "zerver_userprofile"."enable_sounds", "zerver_userprofile"."enter_sends", "zerver_userprofile"."enable_offline_email_notifications", "zerver_userprofile"."last_reminder", "zerver_userprofile"."rate_limits", "zerver_userprofile"."avatar_source", "zerver_userprofile"."tutorial_status", "zerver_userprofile"."onboarding_steps", "zerver_userprofile"."invites_granted", "zerver_userprofile"."invites_used", "zerver_userprofile"."alert_words", "zerver_userprofile"."muted_topics", "zerver_client"."id", "zerver_client"."name"
Now it queries just the fields it needs:
"zerver_client"."name", "zerver_userpresence"."status", "zerver_userpresence"."timestamp", "zerver_userprofile"."email" FROM "zerver_userpresence"
Also, get_status_dict_by_realm is now namespaced under UserPresence as a static method.
(imported from commit be1266844b6bd28b6c615594796713c026a850a1)
2013-09-14 23:59:03 +02:00
|
|
|
|
|
|
|
query = UserPresence.objects.filter(
|
|
|
|
user_profile__realm_id=realm_id,
|
2013-09-16 21:21:28 +02:00
|
|
|
user_profile__is_active=True,
|
|
|
|
user_profile__is_bot=False
|
Optimize user presence/activity query.
The get_status_dict_by_realm helper gets called whenever our
realm user_presences cache expires, and it used to query these fields:
"zerver_userpresence"."id", "zerver_userpresence"."user_profile_id", "zerver_userpresence"."client_id", "zerver_userpresence"."timestamp", "zerver_userpresence"."status", "zerver_userprofile"."id", "zerver_userprofile"."password", "zerver_userprofile"."last_login", "zerver_userprofile"."is_superuser", "zerver_userprofile"."email", "zerver_userprofile"."is_staff", "zerver_userprofile"."is_active", "zerver_userprofile"."is_bot", "zerver_userprofile"."date_joined", "zerver_userprofile"."bot_owner_id", "zerver_userprofile"."full_name", "zerver_userprofile"."short_name", "zerver_userprofile"."pointer", "zerver_userprofile"."last_pointer_updater", "zerver_userprofile"."realm_id", "zerver_userprofile"."api_key", "zerver_userprofile"."enable_desktop_notifications", "zerver_userprofile"."enable_sounds", "zerver_userprofile"."enter_sends", "zerver_userprofile"."enable_offline_email_notifications", "zerver_userprofile"."last_reminder", "zerver_userprofile"."rate_limits", "zerver_userprofile"."avatar_source", "zerver_userprofile"."tutorial_status", "zerver_userprofile"."onboarding_steps", "zerver_userprofile"."invites_granted", "zerver_userprofile"."invites_used", "zerver_userprofile"."alert_words", "zerver_userprofile"."muted_topics", "zerver_client"."id", "zerver_client"."name"
Now it queries just the fields it needs:
"zerver_client"."name", "zerver_userpresence"."status", "zerver_userpresence"."timestamp", "zerver_userprofile"."email" FROM "zerver_userpresence"
Also, get_status_dict_by_realm is now namespaced under UserPresence as a static method.
(imported from commit be1266844b6bd28b6c615594796713c026a850a1)
2013-09-14 23:59:03 +02:00
|
|
|
).values(
|
|
|
|
'client__name',
|
|
|
|
'status',
|
|
|
|
'timestamp',
|
2014-02-26 22:06:57 +01:00
|
|
|
'user_profile__email',
|
|
|
|
'user_profile__id',
|
|
|
|
'user_profile__enable_offline_push_notifications',
|
2014-07-18 00:18:06 +02:00
|
|
|
'user_profile__is_mirror_dummy',
|
Optimize user presence/activity query.
The get_status_dict_by_realm helper gets called whenever our
realm user_presences cache expires, and it used to query these fields:
"zerver_userpresence"."id", "zerver_userpresence"."user_profile_id", "zerver_userpresence"."client_id", "zerver_userpresence"."timestamp", "zerver_userpresence"."status", "zerver_userprofile"."id", "zerver_userprofile"."password", "zerver_userprofile"."last_login", "zerver_userprofile"."is_superuser", "zerver_userprofile"."email", "zerver_userprofile"."is_staff", "zerver_userprofile"."is_active", "zerver_userprofile"."is_bot", "zerver_userprofile"."date_joined", "zerver_userprofile"."bot_owner_id", "zerver_userprofile"."full_name", "zerver_userprofile"."short_name", "zerver_userprofile"."pointer", "zerver_userprofile"."last_pointer_updater", "zerver_userprofile"."realm_id", "zerver_userprofile"."api_key", "zerver_userprofile"."enable_desktop_notifications", "zerver_userprofile"."enable_sounds", "zerver_userprofile"."enter_sends", "zerver_userprofile"."enable_offline_email_notifications", "zerver_userprofile"."last_reminder", "zerver_userprofile"."rate_limits", "zerver_userprofile"."avatar_source", "zerver_userprofile"."tutorial_status", "zerver_userprofile"."onboarding_steps", "zerver_userprofile"."invites_granted", "zerver_userprofile"."invites_used", "zerver_userprofile"."alert_words", "zerver_userprofile"."muted_topics", "zerver_client"."id", "zerver_client"."name"
Now it queries just the fields it needs:
"zerver_client"."name", "zerver_userpresence"."status", "zerver_userpresence"."timestamp", "zerver_userprofile"."email" FROM "zerver_userpresence"
Also, get_status_dict_by_realm is now namespaced under UserPresence as a static method.
(imported from commit be1266844b6bd28b6c615594796713c026a850a1)
2013-09-14 23:59:03 +02:00
|
|
|
)
|
|
|
|
|
2014-02-26 22:06:57 +01:00
|
|
|
mobile_user_ids = [row['user'] for row in PushDeviceToken.objects.filter(
|
|
|
|
user__realm_id=1,
|
|
|
|
user__is_active=True,
|
|
|
|
user__is_bot=False,
|
|
|
|
).distinct("user").values("user")]
|
|
|
|
|
|
|
|
|
Optimize user presence/activity query.
The get_status_dict_by_realm helper gets called whenever our
realm user_presences cache expires, and it used to query these fields:
"zerver_userpresence"."id", "zerver_userpresence"."user_profile_id", "zerver_userpresence"."client_id", "zerver_userpresence"."timestamp", "zerver_userpresence"."status", "zerver_userprofile"."id", "zerver_userprofile"."password", "zerver_userprofile"."last_login", "zerver_userprofile"."is_superuser", "zerver_userprofile"."email", "zerver_userprofile"."is_staff", "zerver_userprofile"."is_active", "zerver_userprofile"."is_bot", "zerver_userprofile"."date_joined", "zerver_userprofile"."bot_owner_id", "zerver_userprofile"."full_name", "zerver_userprofile"."short_name", "zerver_userprofile"."pointer", "zerver_userprofile"."last_pointer_updater", "zerver_userprofile"."realm_id", "zerver_userprofile"."api_key", "zerver_userprofile"."enable_desktop_notifications", "zerver_userprofile"."enable_sounds", "zerver_userprofile"."enter_sends", "zerver_userprofile"."enable_offline_email_notifications", "zerver_userprofile"."last_reminder", "zerver_userprofile"."rate_limits", "zerver_userprofile"."avatar_source", "zerver_userprofile"."tutorial_status", "zerver_userprofile"."onboarding_steps", "zerver_userprofile"."invites_granted", "zerver_userprofile"."invites_used", "zerver_userprofile"."alert_words", "zerver_userprofile"."muted_topics", "zerver_client"."id", "zerver_client"."name"
Now it queries just the fields it needs:
"zerver_client"."name", "zerver_userpresence"."status", "zerver_userpresence"."timestamp", "zerver_userprofile"."email" FROM "zerver_userpresence"
Also, get_status_dict_by_realm is now namespaced under UserPresence as a static method.
(imported from commit be1266844b6bd28b6c615594796713c026a850a1)
2013-09-14 23:59:03 +02:00
|
|
|
for row in query:
|
2014-02-14 22:45:32 +01:00
|
|
|
info = UserPresence.to_presence_dict(
|
|
|
|
client_name=row['client__name'],
|
|
|
|
status=row['status'],
|
2016-06-04 00:44:30 +02:00
|
|
|
dt=row['timestamp'],
|
2014-02-26 22:06:57 +01:00
|
|
|
push_enabled=row['user_profile__enable_offline_push_notifications'],
|
2014-07-18 00:18:06 +02:00
|
|
|
has_push_devices=row['user_profile__id'] in mobile_user_ids,
|
|
|
|
is_mirror_dummy=row['user_profile__is_mirror_dummy'],
|
2014-02-14 22:45:32 +01:00
|
|
|
)
|
|
|
|
user_statuses[row['user_profile__email']][row['client__name']] = info
|
Optimize user presence/activity query.
The get_status_dict_by_realm helper gets called whenever our
realm user_presences cache expires, and it used to query these fields:
"zerver_userpresence"."id", "zerver_userpresence"."user_profile_id", "zerver_userpresence"."client_id", "zerver_userpresence"."timestamp", "zerver_userpresence"."status", "zerver_userprofile"."id", "zerver_userprofile"."password", "zerver_userprofile"."last_login", "zerver_userprofile"."is_superuser", "zerver_userprofile"."email", "zerver_userprofile"."is_staff", "zerver_userprofile"."is_active", "zerver_userprofile"."is_bot", "zerver_userprofile"."date_joined", "zerver_userprofile"."bot_owner_id", "zerver_userprofile"."full_name", "zerver_userprofile"."short_name", "zerver_userprofile"."pointer", "zerver_userprofile"."last_pointer_updater", "zerver_userprofile"."realm_id", "zerver_userprofile"."api_key", "zerver_userprofile"."enable_desktop_notifications", "zerver_userprofile"."enable_sounds", "zerver_userprofile"."enter_sends", "zerver_userprofile"."enable_offline_email_notifications", "zerver_userprofile"."last_reminder", "zerver_userprofile"."rate_limits", "zerver_userprofile"."avatar_source", "zerver_userprofile"."tutorial_status", "zerver_userprofile"."onboarding_steps", "zerver_userprofile"."invites_granted", "zerver_userprofile"."invites_used", "zerver_userprofile"."alert_words", "zerver_userprofile"."muted_topics", "zerver_client"."id", "zerver_client"."name"
Now it queries just the fields it needs:
"zerver_client"."name", "zerver_userpresence"."status", "zerver_userpresence"."timestamp", "zerver_userprofile"."email" FROM "zerver_userpresence"
Also, get_status_dict_by_realm is now namespaced under UserPresence as a static method.
(imported from commit be1266844b6bd28b6c615594796713c026a850a1)
2013-09-14 23:59:03 +02:00
|
|
|
|
|
|
|
return user_statuses
|
|
|
|
|
|
|
|
@staticmethod
|
2016-06-04 00:44:30 +02:00
|
|
|
def to_presence_dict(client_name=None, status=None, dt=None, push_enabled=None,
|
2016-05-07 18:02:57 +02:00
|
|
|
has_push_devices=None, is_mirror_dummy=None):
|
2016-06-12 15:05:01 +02:00
|
|
|
# type: (Optional[text_type], Optional[int], Optional[datetime.datetime], Optional[bool], Optional[bool], Optional[bool]) -> Dict[str, Any]
|
Optimize user presence/activity query.
The get_status_dict_by_realm helper gets called whenever our
realm user_presences cache expires, and it used to query these fields:
"zerver_userpresence"."id", "zerver_userpresence"."user_profile_id", "zerver_userpresence"."client_id", "zerver_userpresence"."timestamp", "zerver_userpresence"."status", "zerver_userprofile"."id", "zerver_userprofile"."password", "zerver_userprofile"."last_login", "zerver_userprofile"."is_superuser", "zerver_userprofile"."email", "zerver_userprofile"."is_staff", "zerver_userprofile"."is_active", "zerver_userprofile"."is_bot", "zerver_userprofile"."date_joined", "zerver_userprofile"."bot_owner_id", "zerver_userprofile"."full_name", "zerver_userprofile"."short_name", "zerver_userprofile"."pointer", "zerver_userprofile"."last_pointer_updater", "zerver_userprofile"."realm_id", "zerver_userprofile"."api_key", "zerver_userprofile"."enable_desktop_notifications", "zerver_userprofile"."enable_sounds", "zerver_userprofile"."enter_sends", "zerver_userprofile"."enable_offline_email_notifications", "zerver_userprofile"."last_reminder", "zerver_userprofile"."rate_limits", "zerver_userprofile"."avatar_source", "zerver_userprofile"."tutorial_status", "zerver_userprofile"."onboarding_steps", "zerver_userprofile"."invites_granted", "zerver_userprofile"."invites_used", "zerver_userprofile"."alert_words", "zerver_userprofile"."muted_topics", "zerver_client"."id", "zerver_client"."name"
Now it queries just the fields it needs:
"zerver_client"."name", "zerver_userpresence"."status", "zerver_userpresence"."timestamp", "zerver_userprofile"."email" FROM "zerver_userpresence"
Also, get_status_dict_by_realm is now namespaced under UserPresence as a static method.
(imported from commit be1266844b6bd28b6c615594796713c026a850a1)
2013-09-14 23:59:03 +02:00
|
|
|
presence_val = UserPresence.status_to_string(status)
|
2016-06-04 00:44:30 +02:00
|
|
|
|
|
|
|
timestamp = datetime_to_timestamp(dt)
|
Optimize user presence/activity query.
The get_status_dict_by_realm helper gets called whenever our
realm user_presences cache expires, and it used to query these fields:
"zerver_userpresence"."id", "zerver_userpresence"."user_profile_id", "zerver_userpresence"."client_id", "zerver_userpresence"."timestamp", "zerver_userpresence"."status", "zerver_userprofile"."id", "zerver_userprofile"."password", "zerver_userprofile"."last_login", "zerver_userprofile"."is_superuser", "zerver_userprofile"."email", "zerver_userprofile"."is_staff", "zerver_userprofile"."is_active", "zerver_userprofile"."is_bot", "zerver_userprofile"."date_joined", "zerver_userprofile"."bot_owner_id", "zerver_userprofile"."full_name", "zerver_userprofile"."short_name", "zerver_userprofile"."pointer", "zerver_userprofile"."last_pointer_updater", "zerver_userprofile"."realm_id", "zerver_userprofile"."api_key", "zerver_userprofile"."enable_desktop_notifications", "zerver_userprofile"."enable_sounds", "zerver_userprofile"."enter_sends", "zerver_userprofile"."enable_offline_email_notifications", "zerver_userprofile"."last_reminder", "zerver_userprofile"."rate_limits", "zerver_userprofile"."avatar_source", "zerver_userprofile"."tutorial_status", "zerver_userprofile"."onboarding_steps", "zerver_userprofile"."invites_granted", "zerver_userprofile"."invites_used", "zerver_userprofile"."alert_words", "zerver_userprofile"."muted_topics", "zerver_client"."id", "zerver_client"."name"
Now it queries just the fields it needs:
"zerver_client"."name", "zerver_userpresence"."status", "zerver_userpresence"."timestamp", "zerver_userprofile"."email" FROM "zerver_userpresence"
Also, get_status_dict_by_realm is now namespaced under UserPresence as a static method.
(imported from commit be1266844b6bd28b6c615594796713c026a850a1)
2013-09-14 23:59:03 +02:00
|
|
|
return dict(
|
|
|
|
client=client_name,
|
|
|
|
status=presence_val,
|
2014-02-26 22:06:57 +01:00
|
|
|
timestamp=timestamp,
|
|
|
|
pushable=(push_enabled and has_push_devices),
|
Optimize user presence/activity query.
The get_status_dict_by_realm helper gets called whenever our
realm user_presences cache expires, and it used to query these fields:
"zerver_userpresence"."id", "zerver_userpresence"."user_profile_id", "zerver_userpresence"."client_id", "zerver_userpresence"."timestamp", "zerver_userpresence"."status", "zerver_userprofile"."id", "zerver_userprofile"."password", "zerver_userprofile"."last_login", "zerver_userprofile"."is_superuser", "zerver_userprofile"."email", "zerver_userprofile"."is_staff", "zerver_userprofile"."is_active", "zerver_userprofile"."is_bot", "zerver_userprofile"."date_joined", "zerver_userprofile"."bot_owner_id", "zerver_userprofile"."full_name", "zerver_userprofile"."short_name", "zerver_userprofile"."pointer", "zerver_userprofile"."last_pointer_updater", "zerver_userprofile"."realm_id", "zerver_userprofile"."api_key", "zerver_userprofile"."enable_desktop_notifications", "zerver_userprofile"."enable_sounds", "zerver_userprofile"."enter_sends", "zerver_userprofile"."enable_offline_email_notifications", "zerver_userprofile"."last_reminder", "zerver_userprofile"."rate_limits", "zerver_userprofile"."avatar_source", "zerver_userprofile"."tutorial_status", "zerver_userprofile"."onboarding_steps", "zerver_userprofile"."invites_granted", "zerver_userprofile"."invites_used", "zerver_userprofile"."alert_words", "zerver_userprofile"."muted_topics", "zerver_client"."id", "zerver_client"."name"
Now it queries just the fields it needs:
"zerver_client"."name", "zerver_userpresence"."status", "zerver_userpresence"."timestamp", "zerver_userprofile"."email" FROM "zerver_userpresence"
Also, get_status_dict_by_realm is now namespaced under UserPresence as a static method.
(imported from commit be1266844b6bd28b6c615594796713c026a850a1)
2013-09-14 23:59:03 +02:00
|
|
|
)
|
2013-04-03 22:00:02 +02:00
|
|
|
|
Optimize user presence/activity query.
The get_status_dict_by_realm helper gets called whenever our
realm user_presences cache expires, and it used to query these fields:
"zerver_userpresence"."id", "zerver_userpresence"."user_profile_id", "zerver_userpresence"."client_id", "zerver_userpresence"."timestamp", "zerver_userpresence"."status", "zerver_userprofile"."id", "zerver_userprofile"."password", "zerver_userprofile"."last_login", "zerver_userprofile"."is_superuser", "zerver_userprofile"."email", "zerver_userprofile"."is_staff", "zerver_userprofile"."is_active", "zerver_userprofile"."is_bot", "zerver_userprofile"."date_joined", "zerver_userprofile"."bot_owner_id", "zerver_userprofile"."full_name", "zerver_userprofile"."short_name", "zerver_userprofile"."pointer", "zerver_userprofile"."last_pointer_updater", "zerver_userprofile"."realm_id", "zerver_userprofile"."api_key", "zerver_userprofile"."enable_desktop_notifications", "zerver_userprofile"."enable_sounds", "zerver_userprofile"."enter_sends", "zerver_userprofile"."enable_offline_email_notifications", "zerver_userprofile"."last_reminder", "zerver_userprofile"."rate_limits", "zerver_userprofile"."avatar_source", "zerver_userprofile"."tutorial_status", "zerver_userprofile"."onboarding_steps", "zerver_userprofile"."invites_granted", "zerver_userprofile"."invites_used", "zerver_userprofile"."alert_words", "zerver_userprofile"."muted_topics", "zerver_client"."id", "zerver_client"."name"
Now it queries just the fields it needs:
"zerver_client"."name", "zerver_userpresence"."status", "zerver_userpresence"."timestamp", "zerver_userprofile"."email" FROM "zerver_userpresence"
Also, get_status_dict_by_realm is now namespaced under UserPresence as a static method.
(imported from commit be1266844b6bd28b6c615594796713c026a850a1)
2013-09-14 23:59:03 +02:00
|
|
|
def to_dict(self):
|
2016-05-07 18:02:57 +02:00
|
|
|
# type: () -> Dict[str, Any]
|
2014-02-14 22:45:32 +01:00
|
|
|
return UserPresence.to_presence_dict(
|
|
|
|
client_name=self.client.name,
|
|
|
|
status=self.status,
|
2016-06-04 00:44:30 +02:00
|
|
|
dt=self.timestamp
|
Optimize user presence/activity query.
The get_status_dict_by_realm helper gets called whenever our
realm user_presences cache expires, and it used to query these fields:
"zerver_userpresence"."id", "zerver_userpresence"."user_profile_id", "zerver_userpresence"."client_id", "zerver_userpresence"."timestamp", "zerver_userpresence"."status", "zerver_userprofile"."id", "zerver_userprofile"."password", "zerver_userprofile"."last_login", "zerver_userprofile"."is_superuser", "zerver_userprofile"."email", "zerver_userprofile"."is_staff", "zerver_userprofile"."is_active", "zerver_userprofile"."is_bot", "zerver_userprofile"."date_joined", "zerver_userprofile"."bot_owner_id", "zerver_userprofile"."full_name", "zerver_userprofile"."short_name", "zerver_userprofile"."pointer", "zerver_userprofile"."last_pointer_updater", "zerver_userprofile"."realm_id", "zerver_userprofile"."api_key", "zerver_userprofile"."enable_desktop_notifications", "zerver_userprofile"."enable_sounds", "zerver_userprofile"."enter_sends", "zerver_userprofile"."enable_offline_email_notifications", "zerver_userprofile"."last_reminder", "zerver_userprofile"."rate_limits", "zerver_userprofile"."avatar_source", "zerver_userprofile"."tutorial_status", "zerver_userprofile"."onboarding_steps", "zerver_userprofile"."invites_granted", "zerver_userprofile"."invites_used", "zerver_userprofile"."alert_words", "zerver_userprofile"."muted_topics", "zerver_client"."id", "zerver_client"."name"
Now it queries just the fields it needs:
"zerver_client"."name", "zerver_userpresence"."status", "zerver_userpresence"."timestamp", "zerver_userprofile"."email" FROM "zerver_userpresence"
Also, get_status_dict_by_realm is now namespaced under UserPresence as a static method.
(imported from commit be1266844b6bd28b6c615594796713c026a850a1)
2013-09-14 23:59:03 +02:00
|
|
|
)
|
2013-04-03 22:00:02 +02:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def status_from_string(status):
|
2016-06-12 15:05:01 +02:00
|
|
|
# type: (NonBinaryStr) -> Optional[int]
|
2013-04-03 22:00:02 +02:00
|
|
|
if status == 'active':
|
|
|
|
status_val = UserPresence.ACTIVE
|
|
|
|
elif status == 'idle':
|
|
|
|
status_val = UserPresence.IDLE
|
|
|
|
else:
|
|
|
|
status_val = None
|
|
|
|
|
|
|
|
return status_val
|
|
|
|
|
2015-10-14 22:43:04 +02:00
|
|
|
class Meta(object):
|
2013-02-08 23:44:15 +01:00
|
|
|
unique_together = ("user_profile", "client")
|
|
|
|
|
2012-11-27 18:26:51 +01:00
|
|
|
class DefaultStream(models.Model):
|
2016-06-13 11:18:10 +02:00
|
|
|
realm = models.ForeignKey(Realm) # type: Realm
|
|
|
|
stream = models.ForeignKey(Stream) # type: Stream
|
2012-11-27 18:26:51 +01:00
|
|
|
|
2015-10-14 22:43:04 +02:00
|
|
|
class Meta(object):
|
2012-11-27 18:26:51 +01:00
|
|
|
unique_together = ("realm", "stream")
|
2012-12-01 04:35:59 +01:00
|
|
|
|
2013-07-26 16:51:02 +02:00
|
|
|
class Referral(models.Model):
|
2016-06-13 11:18:10 +02:00
|
|
|
user_profile = models.ForeignKey(UserProfile) # type: UserProfile
|
|
|
|
email = models.EmailField(blank=False, null=False) # type: text_type
|
|
|
|
timestamp = models.DateTimeField(auto_now_add=True, null=False) # type: datetime.datetime
|
2013-11-06 00:47:59 +01:00
|
|
|
|
2015-08-21 11:56:54 +02:00
|
|
|
# This table only gets used on Zulip Voyager instances
|
2013-11-06 00:47:59 +01:00
|
|
|
# For reasons of deliverability (and sending from multiple email addresses),
|
|
|
|
# we will still send from mandrill when we send things from the (staging.)zulip.com install
|
|
|
|
class ScheduledJob(models.Model):
|
2016-06-13 11:18:10 +02:00
|
|
|
scheduled_timestamp = models.DateTimeField(auto_now_add=False, null=False) # type: datetime.datetime
|
|
|
|
type = models.PositiveSmallIntegerField() # type: int
|
2013-11-06 00:47:59 +01:00
|
|
|
# Valid types are {email}
|
|
|
|
# for EMAIL, filter_string is recipient_email
|
|
|
|
EMAIL = 1
|
|
|
|
|
|
|
|
# JSON representation of the job's data. Be careful, as we are not relying on Django to do validation
|
2016-06-13 11:18:10 +02:00
|
|
|
data = models.TextField() # type: text_type
|
2013-11-06 00:47:59 +01:00
|
|
|
# Kind if like a ForeignKey, but table is determined by type.
|
2016-06-13 11:18:10 +02:00
|
|
|
filter_id = models.IntegerField(null=True) # type: Optional[int]
|
|
|
|
filter_string = models.CharField(max_length=100) # type: text_type
|