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
32
33
34
35
36
|
# File 'lib/wechat/api_loader.rb', line 7
def self.with(options)
account = options[:account] || :default
c = ApiLoader.config(account)
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_username, c.proxy_password)
current_appid = c.corpid.presence || c.appid
current_secret = c.corpsecret.presence || c.secret
unless current_appid && current_secret && token_file.present?
raise 'Need create ~/.wechat.yml with wechat appid and secret or corpid and corpsecret, or running at rails root folder so wechat can read config/wechat.yml'
end
api_config = Wechat::ApiConfig.new(current_appid, current_secret, token_file, js_token_file, network_setting)
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(api_config, qcloud_setting)
elsif c.corpid.present? Wechat::CorpApi.new(api_config, c.agentid)
else Wechat::Api.new(api_config)
end
end
|