summaryrefslogtreecommitdiff
path: root/lib/version_check.rb
blob: 460dc166c416d4f0d2bc0d57a00e4a1578bf3dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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