debian-mirror-gitlab/lib/gitlab.rb

61 lines
1.4 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-10-15 14:42:47 +05:30
require_dependency 'gitlab/popen'
2015-04-26 12:48:37 +05:30
module Gitlab
2018-10-15 14:42:47 +05:30
def self.root
Pathname.new(File.expand_path('..', __dir__))
end
def self.config
Settings
end
def self.revision
@_revision ||= begin
if File.exist?(root.join("REVISION"))
File.read(root.join("REVISION")).strip.freeze
else
result = Gitlab::Popen.popen_with_detail(%W[#{config.git.bin_path} log --pretty=format:%h -n 1])
if result.status.success?
result.stdout.chomp.freeze
else
"Unknown".freeze
end
end
end
end
2017-09-10 17:25:29 +05:30
COM_URL = 'https://gitlab.com'.freeze
2018-05-09 12:01:36 +05:30
APP_DIRS_PATTERN = %r{^/?(app|config|ee|lib|spec|\(\w*\))}
2018-10-15 14:42:47 +05:30
SUBDOMAIN_REGEX = %r{\Ahttps://[a-z0-9]+\.gitlab\.com\z}
VERSION = File.read(root.join("VERSION")).strip.freeze
2018-11-08 19:23:39 +05:30
INSTALLATION_TYPE = File.read(root.join("INSTALLATION_TYPE")).strip.freeze
2017-09-10 17:25:29 +05:30
2016-06-02 11:05:42 +05:30
def self.com?
2018-10-15 14:42:47 +05:30
# Check `gl_subdomain?` as well to keep parity with gitlab.com
Gitlab.config.gitlab.url == COM_URL || gl_subdomain?
end
def self.org?
Gitlab.config.gitlab.url == 'https://dev.gitlab.org'
end
def self.gl_subdomain?
SUBDOMAIN_REGEX === Gitlab.config.gitlab.url
2016-08-24 12:49:21 +05:30
end
2018-10-15 14:42:47 +05:30
def self.dev_env_or_com?
Rails.env.development? || org? || com?
2016-06-02 11:05:42 +05:30
end
2018-12-05 23:21:45 +05:30
def self.pre_release?
VERSION.include?('pre')
end
2019-02-15 15:39:39 +05:30
def self.version_info
Gitlab::VersionInfo.parse(Gitlab::VERSION)
end
2015-04-26 12:48:37 +05:30
end