| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- (in-package #:chatikbot)
- (defvar *telegram-token* nil "Telegram bot token")
- (defparameter +telegram-api-format+ "https://api.telegram.org/bot~A/~A")
- (defvar *telegram-timeout* 30 "Default Telegram timeout")
- (defun %telegram-api-call (method &optional args)
- (let* ((params (loop for (k . v) in args collect (cons
- (princ-to-string k)
- (if (pathnamep v) v
- (princ-to-string v)))))
- (timeout (+ 5 (or (cdr (assoc :timeout args))
- *telegram-timeout*)))
- (response
- (handler-case
- (bordeaux-threads:with-timeout (timeout)
- (json-request (format nil +telegram-api-format+
- *telegram-token* method)
- :method :post
- :parameters params))
- (bordeaux-threads:timeout () (error "Timeout")))))
- (unless (aget "ok" response)
- (error (aget "description" response)))
- (aget "result" response)))
- (defun telegram-get-updates (&key offset limit timeout)
- (%telegram-api-call
- "getUpdates"
- (list (cons "offset" offset)
- (cons "limit" limit)
- (cons "timeout" timeout))))
- (defun telegram-send-message (chat-id text &key disable-web-preview reply-to reply-markup)
- (%telegram-api-call
- "sendMessage"
- (list (cons "chat_id" chat-id)
- (cons "text" text)
- (cons "disable_web_page_preview" disable-web-preview)
- (cons "reply_to_message_id" reply-to)
- (cons "reply_markup" reply-markup))))
- (defun telegram-send-sticker (chat-id sticker &key reply-to reply-markup)
- (%telegram-api-call
- "sendSticker"
- (list (cons "chat_id" chat-id)
- (cons "sticker" sticker)
- (cons "reply_to_message_id" reply-to)
- (cons "reply_markup" reply-markup))))
- (defun telegram-send-photo (chat-id photo &key caption reply-to reply-markup)
- (%telegram-api-call
- "sendPhoto"
- (list (cons "chat_id" chat-id)
- (cons "photo" photo)
- (cons "caption" caption)
- (cons "reply_to_message_id" reply-to)
- (cons "reply_markup" reply-markup))))
- (defun telegram-send-chat-action (chat-id action)
- (%telegram-api-call
- "sendChatAction"
- (list (cons "chat_id" chat-id)
- (cons "action" action))))
|