使用Rails的Messenger bot:设置多个页面

时间:2017-06-02 13:51:05

标签: ruby-on-rails ruby ruby-on-rails-3 facebook-messenger facebook-messenger-bot

我想创建一个由不同用户用于其Facebook页面的Messenger Bot。我创建了一个rails应用程序并使用facebook-messenger gem

我成功创建了机器人,当我为一个页面设置时它可以工作。现在,我按照说明在多个Facebook页面上生成我的僵尸程序(参见"Make a configuration provider" section)。

我是rails的新手,我不确定将ExampleProvider类放在哪里?我把它放在我的config / application.rb文件中:

require_relative 'boot'

require 'rails/all'

# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)

module BotletterApp
  class Application < Rails::Application
    # Settings in config/environments/* take precedence over those specified here.
    # Application configuration should go into files in config/initializers
    # -- all .rb files in that directory are automatically loaded.
    config.paths.add File.join('app', 'bot'), glob: File.join('**', '*.rb')
    config.autoload_paths += Dir[Rails.root.join('app', 'bot', '*')]
  end

  class BotProvider < Facebook::Messenger::Configuration::Providers::Base
    def valid_verify_token?(verify_token)
      bot.exists?(verify_token: verify_token)
    end

    def app_secret_for()
      ENV['APP_SECRET']
    end

    def access_token_for(page_id)
      bot.find_by(user_id: page_id).page_access_token
    end

    private

    def bot
      MyApp::Bot
    end
  end

  Facebook::Messenger.configure do |config|
    config.provider = BotProvider.new
  end
end

然后我有我的app / bot / setup.rb文件来创建机器人。我不知道如何使用我创建的提供程序代替ENV变量?

require "facebook/messenger"

include Facebook::Messenger

Facebook::Messenger::Subscriptions.subscribe(access_token: ENV["ACCESS_TOKEN"])

Facebook::Messenger::Profile.set({
  get_started: {
    payload: 'GET_STARTED_PAYLOAD'
  }
}, access_token: ENV['ACCESS_TOKEN'])

我在Rails文档中搜索了如何使其工作,但遗憾的是找不到任何东西。

更新:

现在,我可以为不同的页面设置机器人。不幸的是,我的ConfigProvider的以下行收到错误:

配置/初始化/ config_provider.rb

def bot
    Rails.application.class.parent::Bot
  end
I'm getting the following error:
  

NameError(未初始化的常量BotletterApp :: Bot):

     

config / initializers / config_provider.rb:17:在bot&#39;   配置/初始化/ config_provider.rb:7:inapp_secret_for&#39;

你知道我该如何命名我的应用程序吗?

我的BotModule:

module BotletterApp
  class Application < Rails::Application
    # Settings in config/environments/* take precedence over those specified here.
    # Application configuration should go into files in config/initializers
    # -- all .rb files in that directory are automatically loaded.
    config.paths.add File.join('app', 'listen'), glob: File.join('**', '*.rb')
    config.autoload_paths += Dir[Rails.root.join('app', 'listen', '*')]
  end
end

UPDATE,它适用于:: Application,这是新文件:

class ConfigProvider < Facebook::Messenger::Configuration::Providers::Base
  def valid_verify_token?(verify_token)
    ENV['VERIFY_TOKEN']
  end

  def app_secret_for(page_id)
    ENV['APP_SECRET']
  end

  def access_token_for(page_id)
    CoreBot.find_by_page_id(page_id).page_access_token
  end

  private

  def bot
    BotletterApp::Application
  end
end

Facebook::Messenger.configure do |config|
  config.provider = ConfigProvider.new
end

问题是我收到以下错误,除非我的数据库查询看起来有效(它在rails控制台中有效):

  

ActiveRecord :: StatementInvalid(SQLite3 :: SQLException:没有这样的列:   page_id.id:SELECT&#34; core_bots&#34;。* FROM&#34; core_bots&#34;哪里   &#34; PAGE_ID&#34;&#34; ID&#34; =?限制?):

1 个答案:

答案 0 :(得分:1)

转向提高可读性的答案;)

关于&#39; plain&#39; ...而不是

As ThisWorkbook

使用

def bot
  BotletterApp::Application
end

或(看起来你命名的模型包含所有页面CoreBot(?)(假设你在def bot Bot end 中有一个典型的ActiveRecord模型,我假设/app/models/core_bot.rb

Bot

然后您应该可以使用README.md

中的模板代码

至于你的最新问题:看起来def bot CoreBot end - 方法被哈希调用,用access_token_for之类的东西搜索。您可能想要检查该值的来源。我建议稍微退一步,并更接近模板代码。