debian-mirror-gitlab/lib/version_check.rb

24 lines
426 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2015-09-11 14:41:01 +05:30
require "base64"
# This class is used to build image URL to
# check if it is a new version for update
class VersionCheck
2019-02-15 15:39:39 +05:30
def self.data
2015-09-11 14:41:01 +05:30
{ version: Gitlab::VERSION }
end
2019-02-15 15:39:39 +05:30
def self.url
2015-09-11 14:41:01 +05:30
encoded_data = Base64.urlsafe_encode64(data.to_json)
2019-02-15 15:39:39 +05:30
2021-06-08 01:23:25 +05:30
"#{host}/check.svg?gitlab_info=#{encoded_data}"
2015-09-11 14:41:01 +05:30
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
end
2021-06-08 01:23:25 +05:30
VersionCheck.prepend_mod