2018-04-23 10:12:19 -04:00
|
|
|
require_dependency 'gitlab/popen'
|
2015-07-15 09:59:38 -04:00
|
|
|
|
|
|
|
module Gitlab
|
2018-04-10 10:07:47 -04:00
|
|
|
def self.root
|
|
|
|
Pathname.new(File.expand_path('..', __dir__))
|
|
|
|
end
|
|
|
|
|
2018-04-23 10:12:19 -04:00
|
|
|
def self.config
|
|
|
|
Settings
|
|
|
|
end
|
|
|
|
|
2018-04-23 07:02:07 -04:00
|
|
|
COM_URL = 'https://gitlab.com'.freeze
|
|
|
|
APP_DIRS_PATTERN = %r{^/?(app|config|ee|lib|spec|\(\w*\))}
|
|
|
|
SUBDOMAIN_REGEX = %r{\Ahttps://[a-z0-9]+\.gitlab\.com\z}
|
|
|
|
VERSION = File.read(root.join("VERSION")).strip.freeze
|
2018-04-23 10:12:19 -04:00
|
|
|
REVISION = Gitlab::Popen.popen(%W(#{config.git.bin_path} log --pretty=format:%h -n 1)).first.chomp.freeze
|
2018-04-23 07:02:07 -04:00
|
|
|
|
2016-04-12 14:39:08 -04:00
|
|
|
def self.com?
|
2018-04-13 13:20:29 -04:00
|
|
|
# Check `gl_subdomain?` as well to keep parity with gitlab.com
|
|
|
|
Gitlab.config.gitlab.url == COM_URL || gl_subdomain?
|
2016-06-13 17:43:29 -04:00
|
|
|
end
|
|
|
|
|
2018-04-17 10:21:03 -04:00
|
|
|
def self.org?
|
|
|
|
Gitlab.config.gitlab.url == 'https://dev.gitlab.org'
|
|
|
|
end
|
|
|
|
|
2018-04-13 13:20:29 -04:00
|
|
|
def self.gl_subdomain?
|
|
|
|
SUBDOMAIN_REGEX === Gitlab.config.gitlab.url
|
2016-04-12 14:39:08 -04:00
|
|
|
end
|
2018-04-12 03:12:21 -04:00
|
|
|
|
2018-04-13 13:20:29 -04:00
|
|
|
def self.dev_env_or_com?
|
2018-04-18 10:24:05 -04:00
|
|
|
Rails.env.development? || org? || com?
|
2018-04-12 03:12:21 -04:00
|
|
|
end
|
2015-07-15 09:59:38 -04:00
|
|
|
end
|