-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathusers.ts
More file actions
272 lines (218 loc) · 6.86 KB
/
Copy pathusers.ts
File metadata and controls
272 lines (218 loc) · 6.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
import type { ApiPeer, ApiUser, ApiUserStatus } from '../../api/types';
import type { LangFn } from '../../hooks/useOldLang';
import { ANONYMOUS_USER_ID, SERVICE_NOTIFICATIONS_USER_ID } from '../../config';
import { formatFullDate, formatTime } from '../../util/dates/dateFormat';
import { orderBy } from '../../util/iteratees';
import { formatPhoneNumber } from '../../util/phoneNumber';
import { prepareSearchWordsForNeedle } from '../../util/searchWords';
import { getServerTime, getServerTimeOffset } from '../../util/serverTime';
export function getUserFirstOrLastName(user?: ApiUser) {
if (!user) {
return undefined;
}
switch (user.type) {
case 'userTypeBot':
return user.firstName;
case 'userTypeRegular': {
return user.firstName || user.lastName;
}
case 'userTypeDeleted':
case 'userTypeUnknown': {
return 'Deleted';
}
default:
return undefined;
}
}
export function getUserFullName(user?: ApiUser) {
if (!user) {
return undefined;
}
if (isDeletedUser(user)) {
return 'Deleted Account';
}
switch (user.type) {
case 'userTypeBot':
case 'userTypeRegular': {
if (user.firstName && user.lastName) {
return `${user.firstName} ${user.lastName}`;
}
if (user.firstName) {
return user.firstName;
}
if (user.lastName) {
return user.lastName;
}
if (user.phoneNumber) {
return `+${formatPhoneNumber(user.phoneNumber)}`;
}
break;
}
}
return undefined;
}
export function getUserStatus(
lang: LangFn, user: ApiUser, userStatus: ApiUserStatus | undefined,
) {
if (user.id === SERVICE_NOTIFICATIONS_USER_ID) {
return lang('ServiceNotifications');
}
if (user.isSupport) {
return lang('SupportStatus');
}
if (user.type && user.type === 'userTypeBot') {
if (user.botActiveUsers) {
return lang('BotUsers', user.botActiveUsers, 'i');
}
return lang('Bot');
}
if (!userStatus) {
return '';
}
switch (userStatus.type) {
case 'userStatusEmpty': {
return lang('ALongTimeAgo');
}
case 'userStatusLastMonth': {
return lang('WithinAMonth');
}
case 'userStatusLastWeek': {
return lang('WithinAWeek');
}
case 'userStatusOffline': {
const { wasOnline } = userStatus;
if (!wasOnline) return lang('LastSeen.Offline');
const serverTimeOffset = getServerTimeOffset();
const now = new Date(Date.now() + serverTimeOffset * 1000);
const wasOnlineDate = new Date(wasOnline * 1000);
if (wasOnlineDate >= now) {
return lang('LastSeen.JustNow');
}
const diff = new Date(now.getTime() - wasOnlineDate.getTime());
// within a minute
if (diff.getTime() / 1000 < 60) {
return lang('LastSeen.JustNow');
}
// within an hour
if (diff.getTime() / 1000 < 60 * 60) {
const minutes = Math.floor(diff.getTime() / 1000 / 60);
return lang('LastSeen.MinutesAgo', minutes);
}
// today
const today = new Date();
today.setHours(0, 0, 0, 0);
const serverToday = new Date(today.getTime() + serverTimeOffset * 1000);
if (wasOnlineDate > serverToday) {
// up to 6 hours ago
if (diff.getTime() / 1000 < 6 * 60 * 60) {
const hours = Math.floor(diff.getTime() / 1000 / 60 / 60);
return lang('LastSeen.HoursAgo', hours);
}
// other
return lang('LastSeen.TodayAt', formatTime(lang, wasOnlineDate));
}
// yesterday
const yesterday = new Date();
yesterday.setDate(now.getDate() - 1);
yesterday.setHours(0, 0, 0, 0);
const serverYesterday = new Date(yesterday.getTime() + serverTimeOffset * 1000);
if (wasOnlineDate > serverYesterday) {
return lang('LastSeen.YesterdayAt', formatTime(lang, wasOnlineDate));
}
return lang('LastSeen.AtDate', formatFullDate(lang, wasOnlineDate));
}
case 'userStatusOnline': {
return lang('Online');
}
case 'userStatusRecently': {
return lang('Lately');
}
default:
return undefined;
}
}
export function isUserOnline(user: ApiUser, userStatus?: ApiUserStatus, withSelfOnline = false) {
const { id, type } = user;
if (!userStatus) {
return false;
}
if (id === SERVICE_NOTIFICATIONS_USER_ID) {
return false;
}
if (user.isSelf && !withSelfOnline) {
return false;
}
return userStatus.type === 'userStatusOnline' && type !== 'userTypeBot';
}
export function isDeletedUser(user: ApiUser) {
return (user.type === 'userTypeDeleted' || user.type === 'userTypeUnknown')
&& user.id !== SERVICE_NOTIFICATIONS_USER_ID;
}
export function isUserBot(user: ApiUser) {
return user.type === 'userTypeBot';
}
export function getCanAddContact(user: ApiUser) {
return !user.isSelf && !user.isContact && !isUserBot(user) && user.id !== ANONYMOUS_USER_ID;
}
export function sortUserIds(
userIds: string[],
usersById: Record<string, ApiUser>,
userStatusesById: Record<string, ApiUserStatus>,
priorityIds?: string[],
) {
return orderBy(userIds, (id) => {
const now = getServerTime();
if (priorityIds && priorityIds.includes(id)) {
// Assuming that online status expiration date can't be as far as two days from now,
// this should place prioritized on top of the list.
// Then we subtract index of `id` in `priorityIds` to preserve selected order
return now + (48 * 60 * 60) - (priorityIds.length - priorityIds.indexOf(id));
}
const user = usersById[id];
const userStatus = userStatusesById[id];
if (!user || !userStatus) {
return 0;
}
if (userStatus.type === 'userStatusOnline') {
return userStatus.expires;
} else if (userStatus.type === 'userStatusOffline' && userStatus.wasOnline) {
return userStatus.wasOnline;
}
switch (userStatus.type) {
case 'userStatusRecently':
return now - 60 * 60 * 24;
case 'userStatusLastWeek':
return now - 60 * 60 * 24 * 7;
case 'userStatusLastMonth':
return now - 60 * 60 * 24 * 7 * 30;
default:
return 0;
}
}, 'desc');
}
export function filterUsersByName(
userIds: string[],
usersById: Record<string, ApiUser>,
query?: string,
currentUserId?: string,
savedMessagesLang?: string,
) {
if (!query) {
return userIds;
}
const searchWords = prepareSearchWordsForNeedle(query);
return userIds.filter((id) => {
const user = usersById[id];
if (!user) {
return false;
}
const name = id === currentUserId ? savedMessagesLang : getUserFullName(user);
return (name && searchWords(name)) || Boolean(user.usernames?.find(({ username }) => searchWords(username)));
});
}
export function getMainUsername(userOrChat: ApiPeer) {
return userOrChat.usernames?.find((u) => u.isActive)?.username;
}
export function getPeerStoryHtmlId(userId: string) {
return `peer-story${userId}`;
}