2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
require "base64"
|
|
|
|
|
|
|
|
class VersionCheck
|
2022-01-26 12:08:38 +05:30
|
|
|
include ReactiveCaching
|
|
|
|
|
|
|
|
self.reactive_cache_work_type = :external_dependency
|
|
|
|
self.reactive_cache_worker_finder = ->(_id, *args) { from_cache }
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
def self.data
|
2015-09-11 14:41:01 +05:30
|
|
|
{ version: Gitlab::VERSION }
|
|
|
|
end
|
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
def self.headers
|
|
|
|
{ "REFERER": Gitlab.config.gitlab.url }
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.url
|
|
|
|
encoded_data = Base64.urlsafe_encode64(data.to_json)
|
|
|
|
|
|
|
|
"#{host}/check.json?gitlab_info=#{encoded_data}"
|
|
|
|
end
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
def self.host
|
2021-06-08 01:23:25 +05:30
|
|
|
'https://version.gitlab.com'
|
2015-09-11 14:41:01 +05:30
|
|
|
end
|
2022-01-26 12:08:38 +05:30
|
|
|
|
|
|
|
def self.from_cache(*)
|
|
|
|
new
|
|
|
|
end
|
|
|
|
|
|
|
|
def id
|
|
|
|
Gitlab::VERSION
|
|
|
|
end
|
|
|
|
|
|
|
|
def calculate_reactive_cache(*)
|
|
|
|
response = Gitlab::HTTP.try_get(self.class.url, headers: self.class.headers)
|
|
|
|
|
|
|
|
case response&.code
|
|
|
|
when 200
|
|
|
|
response.body
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def response
|
|
|
|
with_reactive_cache do |data|
|
|
|
|
Gitlab::Json.parse(data) if data
|
|
|
|
end
|
|
|
|
end
|
2015-09-11 14:41:01 +05:30
|
|
|
end
|
2021-06-08 01:23:25 +05:30
|
|
|
|
|
|
|
VersionCheck.prepend_mod
|