mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
Fixes #2665. Regenerated by tabbott with `lint --fix` after a rebase and change in parameters. Note from tabbott: In a few cases, this converts technical debt in the form of unsorted imports into different technical debt in the form of our largest files having very long, ugly import sequences at the start. I expect this change will increase pressure for us to split those files, which isn't a bad thing. Signed-off-by: Anders Kaseorg <anders@zulip.com>
60 lines
1.4 KiB
Python
60 lines
1.4 KiB
Python
from typing import Any, Dict, Optional
|
|
|
|
from django.db.models import Q
|
|
from django.utils.timezone import now as timezone_now
|
|
|
|
from zerver.models import UserStatus
|
|
|
|
|
|
def get_user_info_dict(realm_id: int) -> Dict[int, Dict[str, Any]]:
|
|
rows = UserStatus.objects.filter(
|
|
user_profile__realm_id=realm_id,
|
|
user_profile__is_active=True,
|
|
).exclude(
|
|
Q(status=UserStatus.NORMAL) &
|
|
Q(status_text=''),
|
|
).values(
|
|
'user_profile_id',
|
|
'status',
|
|
'status_text',
|
|
)
|
|
|
|
user_dict: Dict[int, Dict[str, Any]] = dict()
|
|
for row in rows:
|
|
away = row['status'] == UserStatus.AWAY
|
|
status_text = row['status_text']
|
|
user_id = row['user_profile_id']
|
|
|
|
dct = dict()
|
|
if away:
|
|
dct['away'] = away
|
|
if status_text:
|
|
dct['status_text'] = status_text
|
|
|
|
user_dict[user_id] = dct
|
|
|
|
return user_dict
|
|
|
|
def update_user_status(user_profile_id: int,
|
|
status: Optional[int],
|
|
status_text: Optional[str],
|
|
client_id: int) -> None:
|
|
|
|
timestamp = timezone_now()
|
|
|
|
defaults = dict(
|
|
client_id=client_id,
|
|
timestamp=timestamp,
|
|
)
|
|
|
|
if status is not None:
|
|
defaults['status'] = status
|
|
|
|
if status_text is not None:
|
|
defaults['status_text'] = status_text
|
|
|
|
UserStatus.objects.update_or_create(
|
|
user_profile_id=user_profile_id,
|
|
defaults=defaults,
|
|
)
|