2013-02-19 14:16:50 -06:00
|
|
|
require_dependency 'version'
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2013-02-14 11:57:26 -06:00
|
|
|
module DiscourseHub
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2017-03-27 07:47:07 -05:00
|
|
|
STATS_FETCHED_AT_KEY = "stats_fetched_at"
|
|
|
|
|
2014-05-11 18:06:28 -05:00
|
|
|
def self.version_check_payload
|
2017-03-27 07:47:07 -05:00
|
|
|
default_payload = { installed_version: Discourse::VERSION::STRING }.merge!(Discourse.git_branch == "unknown" ? {} : {branch: Discourse.git_branch})
|
|
|
|
default_payload.merge!(get_payload)
|
2014-05-11 18:06:28 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.discourse_version_check
|
|
|
|
get('/version_check', version_check_payload)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2017-03-27 07:47:07 -05:00
|
|
|
def self.stats_fetched_at=(time_with_zone)
|
|
|
|
$redis.set STATS_FETCHED_AT_KEY, time_with_zone.to_i
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-03-27 07:47:07 -05:00
|
|
|
def self.get_payload
|
|
|
|
SiteSetting.share_anonymized_statistics && stats_fetched_at < 7.days.ago ? About.fetch_cached_stats.symbolize_keys : {}
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
def self.get(rel_url, params={})
|
2013-04-15 13:52:07 -05:00
|
|
|
singular_action :get, rel_url, params
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.post(rel_url, params={})
|
2013-04-15 13:52:07 -05:00
|
|
|
collection_action :post, rel_url, params
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-02-12 09:13:09 -06:00
|
|
|
def self.put(rel_url, params={})
|
2013-04-15 13:52:07 -05:00
|
|
|
collection_action :put, rel_url, params
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.delete(rel_url, params={})
|
|
|
|
singular_action :delete, rel_url, params
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.singular_action(action, rel_url, params={})
|
2017-06-15 19:08:15 -05:00
|
|
|
JSON.parse(Excon.send(action,
|
|
|
|
"#{hub_base_url}#{rel_url}",
|
2017-06-17 12:17:40 -05:00
|
|
|
headers: { 'Referer' => referer, 'Accept' => accepts.join(', ') },
|
2017-06-18 17:51:06 -05:00
|
|
|
query: params,
|
|
|
|
omit_default_port: true
|
2017-06-15 19:08:15 -05:00
|
|
|
).body)
|
2013-04-15 13:52:07 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.collection_action(action, rel_url, params={})
|
2017-06-15 19:08:15 -05:00
|
|
|
JSON.parse(Excon.send(action,
|
|
|
|
"#{hub_base_url}#{rel_url}",
|
2017-06-20 16:15:59 -05:00
|
|
|
body: JSON[params],
|
|
|
|
headers: { 'Referer' => referer, 'Accept' => accepts.join(', '), "Content-Type" => "application/json" },
|
2017-06-19 18:32:45 -05:00
|
|
|
omit_default_port: true
|
2017-06-15 19:08:15 -05:00
|
|
|
).body)
|
2013-02-12 09:13:09 -06:00
|
|
|
end
|
|
|
|
|
2013-02-14 11:57:26 -06:00
|
|
|
def self.hub_base_url
|
2014-08-18 01:42:48 -05:00
|
|
|
if Rails.env.production?
|
2017-01-06 16:54:38 -06:00
|
|
|
ENV['HUB_BASE_URL'] || 'https://api.discourse.org/api'
|
2013-02-05 13:16:51 -06:00
|
|
|
else
|
2013-11-19 13:15:05 -06:00
|
|
|
ENV['HUB_BASE_URL'] || 'http://local.hub:3000/api'
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.accepts
|
2017-06-15 19:08:15 -05:00
|
|
|
['application/json', 'application/vnd.discoursehub.v1']
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
2013-08-28 02:18:31 -05:00
|
|
|
|
2014-08-14 16:29:58 -05:00
|
|
|
def self.referer
|
|
|
|
Discourse.base_url
|
|
|
|
end
|
|
|
|
|
2017-03-27 07:47:07 -05:00
|
|
|
def self.stats_fetched_at
|
|
|
|
t = $redis.get(STATS_FETCHED_AT_KEY)
|
|
|
|
t ? Time.zone.at(t.to_i) : 1.year.ago
|
|
|
|
end
|
|
|
|
|
2013-08-25 17:41:17 -05:00
|
|
|
end
|