Module: Wechat::ApiLoader

Defined in:
lib/wechat/api_loader.rb

Class Method Summary collapse

Class Method Details

.config(account = :default) ⇒ Object



35
36
37
38
39
# File 'lib/wechat/api_loader.rb', line 35

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

.load_yaml(result) ⇒ Object



45
46
47
48
49
50
51
52
53
54
55
# File 'lib/wechat/api_loader.rb', line 45

def self.load_yaml(result)
  if YAML.respond_to?(:unsafe_load)
    YAML.unsafe_load(result)
  else
    begin
      YAML.safe_load(result, aliases: true)
    rescue ArgumentError
      YAML.safe_load(result)
    end
  end
end

.reload_config!Object



41
42
43
# File 'lib/wechat/api_loader.rb', line 41

def self.reload_config!
  @configs = loading_config!
end

.with(options) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/wechat/api_loader.rb', line 7

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

  network_setting = Wechat::NetworkSetting.new(c.timeout, c.skip_verify_ssl, c.proxy_url, c.proxy_port, c.proxy_username, c.proxy_password)
  if c.appid && c.secret && token_file.present?
    if type == 'mp'
      qcloud_env = options[:qcloud_env] || c.qcloud_env
      qcloud_token_file = options[:qcloud_token_file] || c.qcloud_token_file.presence || '/var/tmp/qcloud_access_token'
      qcloud_token_lifespan = options[:qcloud_token_lifespan] || c.qcloud_token_lifespan
      qcloud_setting = Wechat::Qcloud::Setting.new(qcloud_env, qcloud_token_file, qcloud_token_lifespan)
      Wechat::MpApi.new(c.appid, c.secret, token_file, network_setting, js_token_file, qcloud_setting)
    else
      Wechat::Api.new(c.appid, c.secret, token_file, network_setting, js_token_file)
    end
  elsif c.corpid && c.corpsecret && token_file.present?
    Wechat::CorpApi.new(c.corpid, c.corpsecret, token_file, c.agentid, network_setting, 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