debian-mirror-gitlab/lib/gitlab.rb

125 lines
2.9 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2019-10-12 21:52:04 +05:30
require 'pathname'
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
2019-03-02 22:35:43 +05:30
def self.version_info
Gitlab::VersionInfo.parse(Gitlab::VERSION)
end
def self.pre_release?
VERSION.include?('pre')
end
2018-10-15 14:42:47 +05:30
def self.config
Settings
end
def self.revision
@_revision ||= begin
if File.exist?(root.join("REVISION"))
File.read(root.join("REVISION")).strip.freeze
else
2019-07-07 11:18:12 +05:30
result = Gitlab::Popen.popen_with_detail(%W[#{config.git.bin_path} log --pretty=format:%h --abbrev=11 -n 1])
2018-10-15 14:42:47 +05:30
if result.status.success?
result.stdout.chomp.freeze
else
2019-12-04 20:38:33 +05:30
"Unknown"
2018-10-15 14:42:47 +05:30
end
end
end
end
2019-12-04 20:38:33 +05:30
COM_URL = 'https://gitlab.com'
2020-06-23 00:09:42 +05:30
STAGING_COM_URL = 'https://staging.gitlab.com'
2019-07-31 22:56:46 +05:30
APP_DIRS_PATTERN = %r{^/?(app|config|ee|lib|spec|\(\w*\))}.freeze
SUBDOMAIN_REGEX = %r{\Ahttps://[a-z0-9]+\.gitlab\.com\z}.freeze
2018-10-15 14:42:47 +05:30
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
2019-06-05 12:25:43 +05:30
HTTP_PROXY_ENV_VARS = %w(http_proxy https_proxy HTTP_PROXY HTTPS_PROXY).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
2020-06-23 00:09:42 +05:30
def self.staging?
Gitlab.config.gitlab.url == STAGING_COM_URL
end
2019-12-26 22:10:19 +05:30
def self.canary?
Gitlab::Utils.to_boolean(ENV['CANARY'])
end
def self.com_and_canary?
com? && canary?
end
def self.com_but_not_canary?
com? && !canary?
end
2018-10-15 14:42:47 +05:30
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
2019-12-04 20:38:33 +05:30
def self.dev_env_org_or_com?
dev_env_or_com? || org?
end
2018-10-15 14:42:47 +05:30
def self.dev_env_or_com?
2019-12-04 20:38:33 +05:30
Rails.env.development? || com?
2016-06-02 11:05:42 +05:30
end
2018-12-05 23:21:45 +05:30
2020-06-23 00:09:42 +05:30
def self.dev_or_test_env?
Rails.env.development? || Rails.env.test?
end
2019-06-05 12:25:43 +05:30
def self.ee?
2019-09-30 21:07:59 +05:30
@is_ee ||=
2019-12-21 20:55:43 +05:30
# We 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.
#
# The `FOSS_ONLY` is always `string` or `nil`
# Thus the nil or empty string will result
# in using default value: false
#
# The behavior needs to be synchronised with
# config/helpers/is_ee_env.js
root.join('ee/app/models/license.rb').exist? &&
!%w[true 1].include?(ENV['FOSS_ONLY'].to_s)
2019-09-30 21:07:59 +05:30
end
def self.ee
yield if ee?
2019-06-05 12:25:43 +05:30
end
def self.http_proxy_env?
HTTP_PROXY_ENV_VARS.any? { |name| ENV[name] }
end
2019-03-02 22:35:43 +05:30
def self.process_name
2020-03-13 15:44:24 +05:30
return 'sidekiq' if Gitlab::Runtime.sidekiq?
return 'console' if Gitlab::Runtime.console?
2019-03-02 22:35:43 +05:30
return 'test' if Rails.env.test?
2019-02-15 15:39:39 +05:30
2019-03-02 22:35:43 +05:30
'web'
2019-02-15 15:39:39 +05:30
end
2021-02-22 17:27:13 +05:30
def self.maintenance_mode?
return false unless ::Feature.enabled?(:maintenance_mode)
::Gitlab::CurrentSettings.maintenance_mode
end
2015-04-26 12:48:37 +05:30
end