Class: Telegram::Bot::Client
- Inherits:
-
Object
- Object
- Telegram::Bot::Client
- Defined in:
- lib/telegram/bot/client.rb
Instance Attribute Summary collapse
-
#api ⇒ Object
readonly
Returns the value of attribute api.
-
#logger ⇒ Object
Returns the value of attribute logger.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Class Method Summary collapse
Instance Method Summary collapse
- #fetch_updates ⇒ Object
-
#initialize(token, h = {}) ⇒ Client
constructor
A new instance of Client.
- #listen(&block) ⇒ Object
- #run {|_self| ... } ⇒ Object
Constructor Details
Instance Attribute Details
#api ⇒ Object (readonly)
Returns the value of attribute api.
4 5 6 |
# File 'lib/telegram/bot/client.rb', line 4 def api @api end |
#logger ⇒ Object
Returns the value of attribute logger.
5 6 7 |
# File 'lib/telegram/bot/client.rb', line 5 def logger @logger end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
4 5 6 |
# File 'lib/telegram/bot/client.rb', line 4 def @options end |
Class Method Details
.run(*args, &block) ⇒ Object
7 8 9 |
# File 'lib/telegram/bot/client.rb', line 7 def self.run(*args, &block) new(*args).run(&block) end |
Instance Method Details
#fetch_updates ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/telegram/bot/client.rb', line 29 def fetch_updates response = api.getUpdates() return unless response['ok'] response['result'].each do |data| update = Types::Update.new(data) @options[:offset] = update.update_id.next = (update) () yield end rescue Faraday::Error::TimeoutError retry end |
#listen(&block) ⇒ Object
21 22 23 24 25 26 27 |
# File 'lib/telegram/bot/client.rb', line 21 def listen(&block) logger.info('Starting bot') running = true Signal.trap('INT') { running = false } fetch_updates(&block) while running exit end |
#run {|_self| ... } ⇒ Object
17 18 19 |
# File 'lib/telegram/bot/client.rb', line 17 def run yield self end |