18 Commits

Author SHA1 Message Date
c4a74152d6 Bump the version 2020-04-25 19:00:55 -07:00
0f5b17fd2c Start working on fixing Crystal incompatibility 2020-04-25 18:54:59 -07:00
87d1ff8086 Bump the version, I guess. 2019-04-14 22:39:57 -07:00
8c8f7beb5c Rewrite bot to avoid using two fibers and to handle errors in network. 2019-04-14 22:39:15 -07:00
259bed9823 Move some of the sending code outside of the bot. 2018-04-16 19:47:35 -07:00
a94176f65c Fix typo causing compilation error. 2018-01-24 13:20:13 -08:00
bfda135c19 Add hooks that get called when the polling mechanism starts or ends. 2018-01-19 12:15:10 -08:00
806d8db44c Fix seemingly deadlocking loop scenario. 2018-01-16 16:49:01 -08:00
60835022fb Add cast to fix sending File URLs. 2018-01-13 23:11:45 -08:00
cebc91d13a Add a method to send a photo. 2018-01-13 22:41:07 -08:00
81eee54695 Properly handle the @ part of a command. 2018-01-12 22:28:13 -08:00
e4381e7daf Only send nil to channel if worker was just spawned. 2018-01-12 22:18:20 -08:00
d020c0c9bf Move the spawn code out of the poll method. 2018-01-12 22:07:32 -08:00
caca0b1398 Add a way to send messages. 2018-01-12 22:07:20 -08:00
4eaaaa28b7 Add poll and end_poll methods the bot. 2018-01-12 21:54:22 -08:00
1183ee7bc7 Add a timeout to the update polling. 2018-01-12 20:58:51 -08:00
d02b25d026 Implement method to process updates. 2018-01-12 20:56:04 -08:00
cb1c4f2e54 Add a way to register routes that should be run by the bot on update. 2018-01-12 20:28:05 -08:00
5 changed files with 183 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
name: telepathy name: telepathy
version: 0.1.0 version: 0.1.2
authors: authors:
- Danila Fedorin <danila.fedorin@gmail.com> - Danila Fedorin <danila.fedorin@gmail.com>

View File

@@ -1,30 +1,115 @@
require "http" require "http"
require "./utils.cr"
module Telepathy module Telepathy
class Bot class Bot
enum Control
Done
end
def initialize(@api_token : String) def initialize(@api_token : String)
@request_base = "https://api.telegram.org/bot#{@api_token}" @request_base = "https://api.telegram.org/bot#{@api_token}"
@this_user = uninitialized User? @this_user = uninitialized User?
@this_user = get_me @this_user = get_me
@last_update_id = uninitialized Int64? @last_update_id = uninitialized Int64?
@last_update_id = nil @last_update_id = nil
@command_hooks = {} of String => Update, Array(String) -> Void
@message_hooks = [] of Update -> Void
@poll_start_hooks = [] of -> Void
@poll_end_hooks = [] of -> Void
@poll_channel = Channel(Int64?|Control).new
@update_channel = Channel(Array(Update)|Control).new
@poll_running = false
end end
def get_me def get_me
response = HTTP::Client.get(@request_base + "/getMe", Utils.get_me(@api_token)
headers: HTTP::Headers{"User-agent" => "Telepathy"})
return Response(User).from_json(response.body).result
end end
def get_updates def get_updates(timeout = 0)
update_data = {} of String => Int64 | String Utils.get_updates(@api_token, timeout, @last_update_id)
@last_update_id.try { |id| update_data["offset"] = id } end
response = HTTP::Client.get(@request_base + "/getUpdates",
headers: HTTP::Headers{"User-agent" => "Telepathy", "Content-type" => "application/json" }, def send_message(chat_id : String | Int64, text : String,
body: update_data.to_json) parse_mode : Utils::ParseMode = Utils::ParseMode::Normal,
updates = Response(Array(Update)).from_json(response.body).result disable_web_preview : Bool = false,
updates.last?.try { |update| @last_update_id = update.update_id + 1 } disable_notification : Bool = false,
return updates reply_to_message_id : Int64? = nil)
Utils.send_message(@api_token, chat_id, text,
parse_mode, disable_web_preview,
disable_notification, reply_to_message_id)
end
def send_photo(chat_id : String | Int64, photo : String | File, caption : String? = nil,
disable_notification : Bool = false,
reply_to_message_id : Int64? = nil)
Utils.send_photo(@api_token, chat_id, photo, caption, disable_notification, reply_to_message_id)
end
def command(command_name, &block: Update, Array(String) -> Void)
@command_hooks[command_name] = block
end
def message(&block: Update -> Void)
@message_hooks.push(block)
end
def poll_start(&block: -> Void)
@poll_start_hooks.push(block);
end
def poll_end(&block: -> Void)
@poll_end_hooks.push(block);
end
private def process_updates(updates)
updates.each do |update|
if message = update.message
@message_hooks.each &.call(update)
if entity = message.entities.try { |it| it.first? }
text = message.text.as String
if entity.offset == 0 && entity.type == "bot_command"
divider_index = (text.index /\s|@/) || text.size
first_space_index = (text.index /\s/) || text.size
command = text[1...divider_index]
remaining = text[first_space_index..text.size]
params = remaining.empty? ? ([] of String) : (remaining[1...remaining.size].split ' ')
@command_hooks[command]?.try { |command| command.call(update, params) }
end
end
end
end
end
private def spawn_worker
spawn do
while @poll_running
begin
updates = get_updates 10
process_updates updates
@last_update_id = updates.last?.try &.update_id.+(1) || @last_update_id
rescue
end
end
@poll_end_hooks.each do |hook|
hook.call
end
end
end
def poll
if !@poll_running
@poll_running = true
@poll_start_hooks.each do |hook|
hook.call
end
spawn_worker
end
end
def end_poll
@poll_running = false
end end
end end
end end

View File

@@ -1,6 +1,6 @@
require "json" require "json"
require "./user.cr" require "./user.cr"
require "./char.cr" require "./chat.cr"
require "./message_entity.cr" require "./message_entity.cr"
require "./audio.cr" require "./audio.cr"
require "./document.cr" require "./document.cr"

83
src/telepathy/utils.cr Normal file
View File

@@ -0,0 +1,83 @@
module Telepathy::Utils
extend self
API_URL = "https://api.telegram.org/bot"
enum ParseMode
Normal
Markdown
HTML
end
def get_me(api_key : String)
response = HTTP::Client.get(API_URL + api_key + "/getMe",
headers: HTTP::Headers{"User-agent" => "Telepathy"})
return Response(User).from_json(response.body).result
end
def get_updates(api_key : String, timeout = 0, last_update_id : Int? = nil)
update_data = {} of String => Int64 | Int32 | String
update_data["timeout"] = timeout
last_update_id.try { |id| update_data["offset"] = id }
response = HTTP::Client.get(API_URL + api_key + "/getUpdates",
headers: HTTP::Headers{"User-agent" => "Telepathy",
"Content-type" => "application/json" },
body: update_data.to_json)
return Response(Array(Update)).from_json(response.body).result
end
def send_message(api_key : String, chat_id : String | Int64, text : String,
parse_mode : ParseMode = ParseMode::Normal,
disable_web_preview : Bool = false,
disable_notification : Bool = false,
reply_to_message_id : Int64? = nil)
message_data = { "chat_id" => chat_id, "text" => text } of String => Int64 | String | Bool
message_data["disable_web_preview"] = true if disable_web_preview
message_data["disable_notification"] = true if disable_notification
if parse_mode == ParseMode::Markdown
message_data["parse_mode"] = "Markdown"
elsif parse_mode == ParseMode::HTML
message_data["parse_mode"] = "HTML"
end
reply_to_message_id.try { |id| message_data["reply_to_message_id"] = id }
HTTP::Client.get(API_URL + api_key + "/sendMessage",
headers: HTTP::Headers{"User-agent" => "Telepathy", "Content-type" => "application/json" },
body: message_data.to_json)
end
def send_photo(api_key : String, chat_id : String | Int64, photo : String | File, caption : String? = nil,
disable_notification : Bool = false,
reply_to_message_id : Int64? = nil)
IO.pipe do |reader, writer|
channel = Channel(String).new(1)
spawn do
HTTP::FormData.build(writer) do |formdata|
channel.send(formdata.content_type)
case chat_id
when String
formdata.field("chat_id", chat_id.as(String))
when Int64
formdata.field("chat_id", chat_id.as(Int64).to_s)
end
formdata.field("disable_notification", disable_notification.to_s)
caption.try { |caption| formdata.field("caption", caption) }
reply_to_message_id.try { |id| formdata.field("reply_to_message_id", id) }
case photo
when String
formdata.field("photo", photo.as(String))
when File
photo_file = photo.as(File)
formdata.file("photo", photo_file,
HTTP::FormData::FileMetadata.new(filename: File.basename(photo_file.path)))
end
end
writer.close
end
response = HTTP::Client.get(API_URL + api_key + "/sendPhoto",
headers: HTTP::Headers{"User-agent" => "Telepathy",
"Content-type" => channel.receive },
body: reader)
end
end
end

View File

@@ -1,3 +1,3 @@
module Telepathy module Telepathy
VERSION = "0.1.0" VERSION = "0.1.1"
end end