Module: Wechat::ApiLoader

Defined in:
lib/wechat/api_loader.rb

Class Method Summary collapse

Class Method Details

.config(account = :default) ⇒ Object



22
23
24
25
26
# File 'lib/wechat/api_loader.rb', line 22

def self.config( = :default)
   = :default if .nil?
  @configs ||= loading_config!
  @configs[.to_sym] || raise("Wechat configuration for #{} is missing.")
end

.reload_config!Object



28
29
30
# File 'lib/wechat/api_loader.rb', line 28

def self.reload_config!
  @configs = loading_config!
end

.with(options) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/wechat/api_loader.rb', line 3

def self.with(options)
   = options[:account] || :default
  c = ApiLoader.config()

  token_file = options[:token_file] || c.access_token.presence || '/var/tmp/wechat_access_token'
  js_token_file = options[:js_token_file] || c.jsapi_ticket.presence || '/var/tmp/wechat_jsapi_ticket'
  type = options[:type] || c.type
  if c.appid && c.secret && token_file.present?
    wx_class = (type == 'mp') ? Wechat::MpApi : Wechat::Api
    wx_class.new(c.appid, c.secret, token_file, c.timeout, c.skip_verify_ssl, js_token_file)
  elsif c.corpid && c.corpsecret && token_file.present?
    Wechat::CorpApi.new(c.corpid, c.corpsecret, token_file, c.agentid, c.timeout, c.skip_verify_ssl, js_token_file)
  else
    raise "Need create ~/.wechat.yml with wechat appid and secret or running at rails root folder so wechat can read config/wechat.yml"
  end
end