Sha256: 2b12fd29a9e84c01d9cf59851a7635c801f2b938d716908ef8a30642357b0e97

Contents?: true

Size: 1.14 KB

Versions: 6

Compression:

Stored size: 1.14 KB

Contents

module Telegram
  module Bot
    class UpdatesController
      # Use separate actions for different callback queries.
      # It doesn't require session support. Simply add `%{context}:` prefix to data.
      module CallbackQueyContext
        protected

        # Uses #context_from_callback_query as context name.
        # If context is present checks if `%context%_callback_query` is valid
        # action method and returns it if so. Context is stripped from data
        # in this case. Otherwise returns `super`.
        #
        # It wont raise ActionNotFound as MessageContext does,
        # because `data` param is controlled by client.
        def action_for_callback_query
          context, new_data = context_from_callback_query
          # binding.pry
          if context
            action_name = "#{context}_callback_query"
            [false, action_name, [new_data]] if action_method?(action_name)
          end || super
        end

        def context_from_callback_query
          data = payload['data']
          return unless data
          parts = data.split(':', 2)
          parts if parts.size > 1
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
telegram-bot-0.9.0.alpha2 lib/telegram/bot/updates_controller/callback_query_context.rb
telegram-bot-0.9.0.alpha1 lib/telegram/bot/updates_controller/callback_query_context.rb
telegram-bot-0.8.0 lib/telegram/bot/updates_controller/callback_query_context.rb
telegram-bot-0.7.4 lib/telegram/bot/updates_controller/callback_query_context.rb
telegram-bot-0.7.3 lib/telegram/bot/updates_controller/callback_query_context.rb
telegram-bot-0.7.2 lib/telegram/bot/updates_controller/callback_query_context.rb