mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
77 lines
3.2 KiB
Python
77 lines
3.2 KiB
Python
# See https://zulip.readthedocs.io/en/latest/subsystems/hotspots.html
|
|
# for documentation on this subsystem.
|
|
from django.conf import settings
|
|
from django.utils.translation import ugettext as _
|
|
|
|
from zerver.models import UserProfile, UserHotspot
|
|
|
|
from typing import List, Dict
|
|
|
|
ALL_HOTSPOTS: Dict[str, Dict[str, str]] = {
|
|
'intro_reply': {
|
|
'title': _('Reply to a message'),
|
|
'description': _('Click anywhere on a message to reply.'),
|
|
},
|
|
'intro_streams': {
|
|
'title': _('Catch up on a stream'),
|
|
'description': _('Messages sent to a stream are seen by everyone subscribed '
|
|
'to that stream. Try clicking on one of the stream links below.'),
|
|
},
|
|
'intro_topics': {
|
|
'title': _('Topics'),
|
|
'description': _('Every message has a topic. Topics keep conversations '
|
|
'easy to follow, and make it easy to reply to conversations that start '
|
|
'while you are offline.'),
|
|
},
|
|
'intro_gear': {
|
|
'title': _('Settings'),
|
|
'description': _('Go to Settings to configure your '
|
|
'notifications and display settings.'),
|
|
},
|
|
'intro_compose': {
|
|
'title': _('Compose'),
|
|
'description': _('Click here to start a new conversation. Pick a topic '
|
|
'(2-3 words is best), and give it a go!'),
|
|
},
|
|
}
|
|
|
|
def get_next_hotspots(user: UserProfile) -> List[Dict[str, object]]:
|
|
# For manual testing, it can be convenient to set
|
|
# ALWAYS_SEND_ALL_HOTSPOTS=True in `zproject/dev_settings.py` to
|
|
# make it easy to click on all of the hotspots. Note that
|
|
# ALWAYS_SEND_ALL_HOTSPOTS has some bugs; see ReadTheDocs (link
|
|
# above) for details.
|
|
if settings.ALWAYS_SEND_ALL_HOTSPOTS:
|
|
return [{
|
|
'name': hotspot,
|
|
'title': ALL_HOTSPOTS[hotspot]['title'],
|
|
'description': ALL_HOTSPOTS[hotspot]['description'],
|
|
'delay': 0,
|
|
} for hotspot in ALL_HOTSPOTS]
|
|
|
|
if user.tutorial_status == UserProfile.TUTORIAL_FINISHED:
|
|
return []
|
|
|
|
seen_hotspots = frozenset(UserHotspot.objects.filter(user=user).values_list('hotspot', flat=True))
|
|
for hotspot in ['intro_reply', 'intro_streams', 'intro_topics', 'intro_gear', 'intro_compose']:
|
|
if hotspot not in seen_hotspots:
|
|
return [{
|
|
'name': hotspot,
|
|
'title': ALL_HOTSPOTS[hotspot]['title'],
|
|
'description': ALL_HOTSPOTS[hotspot]['description'],
|
|
'delay': 0.5,
|
|
}]
|
|
|
|
user.tutorial_status = UserProfile.TUTORIAL_FINISHED
|
|
user.save(update_fields=['tutorial_status'])
|
|
return []
|
|
|
|
def copy_hotpots(source_profile: UserProfile, target_profile: UserProfile) -> None:
|
|
for userhotspot in frozenset(UserHotspot.objects.filter(user=source_profile)):
|
|
UserHotspot.objects.create(user=target_profile, hotspot=userhotspot.hotspot,
|
|
timestamp=userhotspot.timestamp)
|
|
|
|
target_profile.tutorial_status = source_profile.tutorial_status
|
|
target_profile.onboarding_steps = source_profile.onboarding_steps
|
|
target_profile.save(update_fields=['tutorial_status', 'onboarding_steps'])
|