2018-10-06 19:10:08 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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
|
|
|
|
|
2019-01-29 15:45:47 -05:00
|
|
|
def self.version_info
|
|
|
|
Gitlab::VersionInfo.parse(Gitlab::VERSION)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.pre_release?
|
|
|
|
VERSION.include?('pre')
|
|
|
|
end
|
|
|
|
|
2018-04-23 10:12:19 -04:00
|
|
|
def self.config
|
|
|
|
Settings
|
|
|
|
end
|
|
|
|
|
2018-05-24 03:57:54 -04:00
|
|
|
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
|
|
|
|
|
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-06-07 11:01:20 -04:00
|
|
|
INSTALLATION_TYPE = File.read(root.join("INSTALLATION_TYPE")).strip.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
|
2019-01-16 08:29:05 -05:00
|
|
|
|
|
|
|
def self.process_name
|
|
|
|
return 'sidekiq' if Sidekiq.server?
|
|
|
|
return 'console' if defined?(Rails::Console)
|
|
|
|
return 'test' if Rails.env.test?
|
|
|
|
|
|
|
|
'web'
|
|
|
|
end
|
2015-07-15 09:59:38 -04:00
|
|
|
end
|