2018-10-06 19:10:08 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-06-13 08:18:01 -04:00
|
|
|
require_dependency File.expand_path('gitlab/popen', __dir__)
|
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
|
2019-03-28 07:05:03 -04:00
|
|
|
result = Gitlab::Popen.popen_with_detail(%W[#{config.git.bin_path} log --pretty=format:%h --abbrev=11 -n 1])
|
2018-05-24 03:57:54 -04:00
|
|
|
|
|
|
|
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
|
2019-05-05 06:19:14 -04:00
|
|
|
APP_DIRS_PATTERN = %r{^/?(app|config|ee|lib|spec|\(\w*\))}.freeze
|
|
|
|
SUBDOMAIN_REGEX = %r{\Ahttps://[a-z0-9]+\.gitlab\.com\z}.freeze
|
2018-04-23 07:02:07 -04:00
|
|
|
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
|
2019-05-29 12:43:07 -04:00
|
|
|
HTTP_PROXY_ENV_VARS = %w(http_proxy https_proxy HTTP_PROXY HTTPS_PROXY).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
|
|
|
|
2019-03-04 03:20:37 -05:00
|
|
|
def self.ee?
|
2019-06-13 08:18:01 -04:00
|
|
|
@is_ee ||=
|
|
|
|
if ENV['IS_GITLAB_EE'].present?
|
|
|
|
Gitlab::Utils.to_boolean(ENV['IS_GITLAB_EE'])
|
|
|
|
else
|
|
|
|
# We may use this method when the Rails environment is not loaded. This
|
|
|
|
# means that checking the presence of the License class could result in
|
|
|
|
# this method returning `false`, even for an EE installation.
|
|
|
|
root.join('ee/app/models/license.rb').exist?
|
|
|
|
end
|
2019-03-04 03:20:37 -05:00
|
|
|
end
|
|
|
|
|
2019-06-24 12:36:32 -04:00
|
|
|
def self.ee
|
|
|
|
yield if ee?
|
|
|
|
end
|
|
|
|
|
2019-05-29 12:43:07 -04:00
|
|
|
def self.http_proxy_env?
|
|
|
|
HTTP_PROXY_ENV_VARS.any? { |name| ENV[name] }
|
|
|
|
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
|