forked from zevlg/telega.el
-
Notifications
You must be signed in to change notification settings - Fork 0
/
telega-tme.el
529 lines (473 loc) · 22.9 KB
/
telega-tme.el
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
;;; telega-tme.el --- Handling internal telegram links -*- lexical-binding:t -*-
;; Copyright (C) 2019 by Zajcev Evgeny.
;; Author: Zajcev Evgeny <[email protected]>
;; Created: Sat Jan 19 16:36:01 2019
;; Keywords:
;; telega is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; telega is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with telega. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;
;;; Code:
(require 'cl-lib)
(require 'rx)
(require 'url-parse)
(require 'url-util)
(require 'telega-tdlib)
(require 'telega-i18n)
(require 'telega-sticker)
(require 'telega-util)
;; telega-chat.el depends on telega-tme.el
(declare-function telega-chat-get "telega-chat" (chat-id &optional offline-p))
(declare-function telega-chat-by-username "telega-chat" (username))
(declare-function telega-chat--goto-msg "telega-chat" (chat msg-id &optional highlight callback))
(declare-function telega-chat--pop-to-buffer "telega-chat" (chat &optional no-history-load))
(declare-function telega-chatbuf--prompt-update "telega-chat")
(declare-function telega-webpage--instant-view "telega-webpage" (url &optional sitename instant-view))
(declare-function telega-browse-url "telega-webpage" (url &optional in-web-browser))
(defun telega-tme--media-timestamp-callback (media-timestamp-str)
"Generate callback to open media message at MEDIA-TIMESTAMP."
(when media-timestamp-str
(lambda ()
(let ((msg (telega-msg-at (point))))
(when (telega-msg-match-p msg '(type VideoNote VoiceNote Audio Video))
(let ((telega-ffplay-media-timestamp
(string-to-number media-timestamp-str)))
(telega-msg-open-content msg)))))))
(defun telega-tme-internal-link-to (chat-or-msg &rest params)
"Return internal tme link to CHAT-OR-MSG.
Return nil if link can't be created.
PARAMS is a plist of additional parameters to the returned link."
(let ((chat (if (telega-chat-p chat-or-msg)
chat-or-msg
(telega-chat-get (plist-get chat-or-msg :chat_id) 'offline))))
(concat "tg:telega:"
(if-let ((chat-username (telega-chat-username chat)))
(concat "@" chat-username)
(number-to-string (plist-get chat :id)))
(when params
(concat "?" (telega-tme-build-query-string params)))
(when-let ((msg (unless (telega-chat-p chat-or-msg) chat-or-msg)))
(concat "#" (number-to-string
(/ (plist-get msg :id) telega-msg-id-step))))
)))
(defun telega-tme-open-internal (chat-spec &optional post-spec params)
"Open internal link to any chat or message.
CHAT-SPEC = @<username> | <chat-id>
POST-SPEC = <POST-ID> | <MSG-ID> (for backward compatibility)
PARAMS is a plist with additional parameters, supported parameters are:
`:open_content' to open the message contents from MSG-SPEC."
(let* ((chat (or (if (string-prefix-p "@" chat-spec)
(telega-chat-by-username (substring chat-spec 1))
(telega-chat-get (string-to-number chat-spec) 'offline))
(user-error "No chat with CHAT-SPEC=%S" chat-spec)))
(post-id (when post-spec (string-to-number post-spec)))
;; NOTE: For backward compatibility check if POST-ID is
;; actually a MSG-ID
(msg-id (when post-id (if (zerop (% post-id telega-msg-id-step))
post-id
(* post-id telega-msg-id-step)))))
(cond ((plist-get params :open_content)
(cl-assert msg-id)
(telega-msg-get chat msg-id
(lambda (message &optional _offline-p)
(telega-msg-open-content message))))
(t
(telega-chat--pop-to-buffer chat)
(when msg-id
(telega-chat--goto-msg chat msg-id 'highlight))))))
(defun telega-tme--post-msg-id (post)
"Convert POST number to the message id."
;; See https://github.com/tdlib/td/issues/16
;; msg-id = post * 1048576
(* (string-to-number post) telega-msg-id-step))
(defun telega-tme-open-privatepost (supergroup post &optional media-timestamp)
"Open POST in private SUPERGROUP."
(let ((chat (telega-chat-get (string-to-number (concat "-100" supergroup))
'offline)))
(unless chat
(error "telega: %s" (telega-i18n "lng_error_post_link_invalid")))
(telega-chat--goto-msg chat (telega-tme--post-msg-id post) 'highlight
(telega-tme--media-timestamp-callback media-timestamp))))
(defun telega-tme-open-username (username &rest params)
"Open chat by its USERNAME.
PARAMS are additional params."
(cond ((string= username "telegrampassport")
;; TODO: passport
(message "telega TODO: handle `telegrampassport'"))
;; See https://core.telegram.org/bots#deep-linking for
;; `:start' and `:startgroup' meaning
((plist-get params :startgroup)
(let ((bot-user (telega-chat-user (telega--searchPublicChat username)))
(chat (telega-completing-read-chat
;; TODO: i18n
(format "Start «%s» in group: "
(propertize (concat "@" username) 'face 'bold))
(telega-filter-chats
telega--ordered-chats
'(my-permission :can_invite_users)))))
(telega-chat--pop-to-buffer chat)
(telega--sendBotStartMessage
bot-user chat (plist-get params :startgroup))))
((plist-get params :start)
(let* ((bot-chat (telega--searchPublicChat username))
(bot-user (telega-chat-user bot-chat)))
(telega-chat--pop-to-buffer bot-chat)
(telega--sendBotStartMessage
bot-user bot-chat (plist-get params :start))))
(t
;; Ordinary user/channel/group, :post
(let ((chat (telega--searchPublicChat username))
(post (plist-get params :post))
(comment (plist-get params :comment))
(thread (plist-get params :thread))
(media-timestamp (plist-get params :t)))
(unless chat
(error "Unknown public chat: %s" username))
(cond ((and post thread)
(telega-chat--goto-thread
chat (telega-tme--post-msg-id thread)
(telega-tme--post-msg-id post)))
((and post comment)
;; comment with post is the same as post with thread
(telega-chat--goto-thread
chat (telega-tme--post-msg-id post)
(telega-tme--post-msg-id comment)))
(post
(telega-chat--goto-msg chat
(telega-tme--post-msg-id post) 'highlight
(telega-tme--media-timestamp-callback media-timestamp)))
(t
(telega-chat--pop-to-buffer chat)))))
))
(defun telega-tme-open-invite-link (url)
"Join the GROUP by invitation link specified by URL."
(let* ((invite-link (let ((tl-obj (telega--checkChatInviteLink url)))
(when (telega--tl-error-p tl-obj)
(error "telega: %s" (telega-tl-str tl-obj :error)))
tl-obj))
(chat-id (plist-get invite-link :chat_id))
(chat (when invite-link
(if (zerop chat-id)
;; Can only join (or request to join) by link
(when (telega-join-invite-link-y-or-n-p invite-link)
(telega--joinChatByInviteLink url))
;; Can preview messages before deciding to join
(telega-chat-get chat-id)))))
(when chat
(telega-chat--pop-to-buffer chat))))
(defun telega-tme-open-proxy-tdlib-link (tdlib-link)
"Add a proxy defined by internal TDLIB-LINK."
(let ((help-window-select t))
(with-telega-help-win "*Telega Add Proxy*"
(telega-ins-describe-section (telega-i18n "lng_proxy_add"))
;; NOTE: Only MTPROTO proxies may add sponsor channel
(when (eq 'proxyTypeMtproto
(telega--tl-type (plist-get tdlib-link :type)))
(telega-ins--help-message
(telega-ins-i18n "lng_proxy_sponsor_warning")))
(telega-ins-describe-item "Server"
(telega-ins (telega-tl-str tdlib-link :server)))
(telega-ins-describe-item "Port"
(telega-ins-fmt "%d" (plist-get tdlib-link :port)))
(telega-ins--box-button (telega-i18n "lng_proxy_add")
'action (lambda-with-current-buffer (_button)
(kill-buffer-and-window)
(telega--addProxy
(list :server (telega-tl-str tdlib-link :server)
:port (plist-get tdlib-link :port)
:type (plist-get tdlib-link :type))
(lambda (_proxy)
(telega-describe-network)))))
)))
(defun telega-tme-open-proxy (type proxy)
"Open the PROXY."
;; TYPE is "socks" or "proxy"
;; :server, :port, :user, :pass, :secret
(message "TODO: `telega-tme-open-proxy' %S / %S" type proxy)
(telega-tme-open-proxy-tdlib-link
(list :@type "internalLinkTypeProxy"
:server (plist-get proxy :server)
:port (string-to-number (plist-get proxy :port))
:type (cond ((string= type "proxy")
(list :@type "proxyTypeMtproto"
:secret (plist-get proxy :secret)))
((string= type "socks")
(list :@type "proxyTypeSocks5"
:username (plist-get proxy :user)
:password (plist-get proxy :pass)))
(t
(error "Unknown proxy type: %S" type)))))
)
(defun telega-tme-open-stickerset (setname)
"Open sticker set with SETNAME."
(message "telega: Searching for %S stickerset.." setname)
(telega--searchStickerSet setname #'telega-describe-stickerset))
(defun telega-tme-open-theme (_slug)
(user-error "`telega-tme-open-theme' not yet implemented"))
(defun telega-tme-open-lang (lang)
"Open setlanguage tg link to change language to LANG."
(when (equal lang telega-language)
(user-error (concat "Language is already " lang)))
(let ((lang-pack (telega--getLanguagePackInfo lang)))
(when (yes-or-no-p (concat "Telega: change UI language to "
(plist-get lang-pack :native_name)
"? "))
(setq telega-language lang)
(telega--setOption :language_pack_id lang 'sync)
(telega-i18n-init))))
(defun telega-tme-parse-query-string (query-string)
"Parse QUERY-STRING and return it as plist.
Multiple params with same name in QUERY-STRING is disallowed."
(let ((query (ignore-errors
(url-parse-query-string query-string 'downcase))))
(cl-loop for (name val) in query
nconc (list (intern (concat ":" name)) val))))
(defun telega-tme-build-query-string (query-params &optional
semicolons keep-empty)
"Build a query string for the QUERY-PARAMS.
QUERY-PARAMS should be in form returned from `telega-tme-parse-query-string'.
SEMICOLONS and KEEP-EMPTY are passed directly to `url-build-query-string'."
(url-build-query-string
(telega-plist-map (lambda (key val)
(cl-assert (keywordp key))
(list (substring (symbol-name key) 1) val))
query-params)
semicolons keep-empty))
(defun telega-tme-open-tg (url)
"Open URL starting with `tg:'.
Return non-nil, meaning URL has been handled."
(when (string-prefix-p "tg://" url)
;; Convert it to `tg:' form
(setq url (concat "tg:" (substring url 5))))
(let* ((urlobj (url-generic-parse-url url))
(path-query (url-path-and-query urlobj))
(path (car path-query))
(query (telega-tme-parse-query-string (cdr path-query))))
(cond ((string= path "resolve")
(let ((username (plist-get query :domain)))
(setq query (telega-plist-del query :domain))
(apply #'telega-tme-open-username username query)))
((string= path "join")
(let ((invite-link (concat (or (plist-get telega--options :t_me_url)
"https://t.me/")
"joinchat/" (plist-get query :invite))))
(telega-tme-open-invite-link invite-link)))
((string= path "addstickers")
(telega-tme-open-stickerset (plist-get query :set)))
((string= path "addemoji")
(telega-tme-open-stickerset (plist-get query :set)))
((string= path "addtheme")
(telega-tme-open-theme (plist-get query :slug)))
((string= path "setlanguage")
(telega-tme-open-lang (plist-get query :lang)))
((string= path "privatepost")
(telega-tme-open-privatepost
(plist-get query :channel) (plist-get query :post)
(plist-get query :t)))
((or (string= path "msg") (string= path "share"))
)
((string= path "msg_url")
)
((string= path "confirmphone")
)
((or (string= path "passport") (string= path "secureid"))
)
((or (string= path "socks") (string= path "proxy"))
(telega-tme-open-proxy path query))
((string= path "login")
)
;; Internal links to any chat or message
;; See: https://github.com/zevlg/telega.el/issues/139
;; Internal links are in form
;; tg:telega:<CHAT-SPEC>[?<PARAMS>][#<POST-ID>]
;; CHAT-SPEC = @USERNAME | CHAT-ID
;; PARAMS = query params such as "open_content=t"
;; POST-ID = MSG-ID div 1048576
((string-match "^telega:\\([^#]+\\)" path)
(telega-tme-open-internal
(match-string 1 path) (url-target urlobj) query))
(t
(message "telega: Unsupported tg url: %s" url))))
t)
(defconst telega-tme--url-regexp
(rx string-start
(? (group "http" (? "s") "://"))
(or "t.me" "telegram.me" "telegram.dog")
(group "/" (1+ (regexp "[^?]"))) ;path
(? "?" (group (1+ any)))) ;query
"Regexp to match urls to the Telegram resources.
Matches only t.me, telegram.me and telegram.dog domains.")
(defun telega-tme-open (url &optional just-convert)
"Open any URL with https://t.me prefix.
If JUST-CONVERT is non-nil, return converted link value.
JUST-CONVERT can be `offline' to avoid calls to telega-server.
Return non-nil if url has been handled."
;; Convert URL to `tg:' form and call `telega-tme-open-tg'
(when (string-match telega-tme--url-regexp url)
(let* ((path (match-string 2 url))
(query (match-string 3 url))
(case-fold-search nil) ;ignore case
(tg
(cond ((string-match "^/joinchat/\\([a-zA-Z0-9._-]+\\)$" path)
(concat "tg:join?invite=" (match-string 1 path)))
((string-match "^/addstickers/\\([a-zA-Z0-9._-]+\\)$" path)
(concat "tg:addstickers?set=" (match-string 1 path)))
((string-match "^/addemoji/\\([a-zA-Z0-9._-]+\\)$" path)
(concat "tg:addemoji?set=" (match-string 1 path)))
((string-match "^/addtheme/\\([a-zA-Z0-9._-]+\\)$" path)
(concat "tg:addtheme?slug=" (match-string 1 path)))
((string-match "^/share/url$" path)
(concat "tg:msg_url?" query))
((string-match
(eval-when-compile
(rx (and line-start "/c/"
(group (? "-") (1+ digit))
"/"
(group (1+ digit)))))
path)
(concat "tg:privatepost?channel=" (match-string 1 path)
"&post=" (match-string 2 path)
(when query (concat "&" query))))
((string-match "^/addlist/\\([a-zA-Z0-9._-]+\\)$" path)
(concat "tg:addlist?slug=" (match-string 1 path)))
((string-match "^/\\+\\([^/]+\\)$" path)
(concat "tg:join?invite=" (match-string 1 path)))
((string-match "^/\\(socks\\|proxy\\)$" path)
;; Use getInternalLinkType for proxies
nil)
((and just-convert
(string-match
(eval-when-compile
(rx (and line-start "/"
(group (1+ (regexp "[a-zA-Z0-9\\.\\_]")))
(? "/" (group (1+ digit)))
line-end)))
path))
(concat "tg:resolve?domain=" (match-string 1 path)
(when (match-string 2 path)
(concat "&post=" (match-string 2 path)))
(when query (concat "&" query))))
))
(tdlib-link (unless (or tg (eq 'offline just-convert))
(telega--getInternalLinkType url))))
(cond (just-convert (or tg tdlib-link))
(tg (telega-tme-open-tg tg) t)
(tdlib-link (telega-tme-open-tdlib-link tdlib-link) t)
(t (telega-debug "WARN: Can't open \"%s\" internally" url)
nil)))))
(defun telega-tme-open-tdlib-link (tdlib-link)
"Open TDLib's internal link.
To convert url to TDLib link, use `telega--getInternalLinkType'."
(cl-ecase (telega--tl-type tdlib-link)
;; TODO: add other link types
(internalLinkTypePublicChat
(when-let* ((username (plist-get tdlib-link :chat_username))
(chat (telega--searchPublicChat username)))
(telega-chat--pop-to-buffer chat)))
(internalLinkTypeBotStart
(let* ((bot-username (plist-get tdlib-link :bot_username))
(bot-chat (telega--searchPublicChat bot-username))
(bot-user (when bot-chat
(telega-chat-user bot-chat))))
(unless bot-user
(error "telega: No such bot @%s" bot-username))
(telega-chat--pop-to-buffer bot-chat)
(setq telega-chatbuf--bot-start-parameter
(telega-tl-str tdlib-link :start_parameter))
(telega-chatbuf--chat-update "bot-start-parameter")
;; Now wait till [START] is pressed
))
;; (internalLinkTypeAttachmentMenuBot
;; (let ((url
;; getAttachmentMenuBot
;; (telega-browse-url (telega-tl-str tdlib-link :url)))
(internalLinkTypeMessage
(let* ((msg-info (telega--getMessageLinkInfo
(telega-tl-str tdlib-link :url)))
(chat-id (plist-get msg-info :chat_id))
(chat (telega-chat-get chat-id))
(thread-id (plist-get msg-info :message_thread_id))
(msg (plist-get msg-info :message)))
(unless msg
(error (concat "telega: " (telega-i18n "lng_message_not_found"))))
(cond ((telega-zerop thread-id)
(telega-msg-goto-highlight msg))
((telega-msg-match-p msg 'is-topic)
(let ((topic (telega-topic-get chat thread-id)))
(telega-topic-goto topic (plist-get msg :id))))
(t
(telega-chat--goto-thread chat thread-id (plist-get msg :id))))))
(internalLinkTypeChatInvite
(telega-tme-open-invite-link (plist-get tdlib-link :invite_link)))
(internalLinkTypeStickerSet
(telega-tme-open-stickerset (telega-tl-str tdlib-link :sticker_set_name)))
(internalLinkTypeInstantView
(let* ((url (telega-tl-str tdlib-link :url))
(fallback-url (telega-tl-str tdlib-link :fallback_url))
(iv (telega--getWebPageInstantView url)))
(if iv
(telega-webpage--instant-view url "Telegra.ph" iv)
(telega-browse-url fallback-url 'in-browser))))
(internalLinkTypeChatBoost
(let* ((info (telega--getChatBoostLinkInfo (telega-tl-str tdlib-link :url)))
(chat (telega-chat-get (plist-get info :chat_id)))
(title (telega-ins--as-string
(telega-ins--msg-sender chat
:with-avatar-p t
:with-username-p 'username
:with-brackets-p t)))
(status (telega--getChatBoostStatus chat)))
(when (y-or-n-p (concat (telega-i18n "lng_boost_channel_button")
" " title
(format " [%d/%d]"
(plist-get status :boost_count)
(plist-get status :next_level_boost_count))
"? "))
(telega--boostChat chat)
(message "telega: %s" (telega-i18n "lng_boost_channel_you_title"
:channel title)))))
(internalLinkTypeLanguagePack
(telega-tme-open-lang (telega-tl-str tdlib-link :language_pack_id)))
(internalLinkTypeStory
(let* ((chat (telega--searchPublicChat
(plist-get tdlib-link :story_sender_username)))
(story (telega--getStory
(plist-get chat :id) (plist-get tdlib-link :story_id))))
(telega-story-open story)))
(internalLinkTypeWebApp
(let* ((chat-bot (telega--searchPublicChat
(plist-get tdlib-link :bot_username)))
(_ (unless (telega-chat-bot-p chat-bot)
(error "WebApp username must be bot")))
(web-app (telega--searchWebApp
(or (telega-chat-user chat-bot)
(error "WebApp username must be bot"))
(plist-get tdlib-link :web_app_short_name))))
(message "found webapp: %S" web-app)))
(internalLinkTypeAttachmentMenuBot
(let ((target-chat (plist-get tdlib-link :target_chat)))
(cl-ecase (telega--tl-type target-chat)
(targetChatCurrent
(let* ((bot-chat (telega--searchPublicChat
(plist-get tdlib-link :bot_username)))
(web-app-info (telega--openWebApp
bot-chat (telega-chat-user bot-chat)
(plist-get tdlib-link :url))))
(message "Webapp info: %S" web-app-info)
(telega-browse-url (plist-get web-app-info :url))))
)))
(internalLinkTypeProxy
(telega-tme-open-proxy-tdlib-link tdlib-link))
(internalLinkTypeBackground
(error "TODO: searchBackground"))
))
(provide 'telega-tme)
;;; telega-tme.el ends here