diff options
Diffstat (limited to 'lib/version_check.rb')
-rw-r--r-- | lib/version_check.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/version_check.rb b/lib/version_check.rb new file mode 100644 index 00000000000..460dc166c41 --- /dev/null +++ b/lib/version_check.rb @@ -0,0 +1,19 @@ +require "base64" + +# This class is used to build image URL to +# check if it is a new version for update +class VersionCheck + def data + { version: Gitlab::VERSION } + end + + def url + encoded_data = Base64.urlsafe_encode64(data.to_json) + "#{host}?gitlab_info=#{encoded_data}" + end + + # FIXME: Replace with version.gitlab.com + def host + 'http://localhost:9090/check.png' + end +end |