debian-mirror-gitlab/lib/gitlab.rb

161 lines
3.8 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
2021-04-17 20:07:23 +05:30
def self.host_with_port
"#{self.config.gitlab.host}:#{self.config.gitlab.port}"
end
2018-10-15 14:42:47 +05:30
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-07-31 22:56:46 +05:30
APP_DIRS_PATTERN = %r{^/?(app|config|ee|lib|spec|\(\w*\))}.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
2021-09-04 01:27:46 +05:30
Gitlab.config.gitlab.url == Gitlab::Saas.com_url || gl_subdomain?
2018-10-15 14:42:47 +05:30
end
2021-03-11 19:13:27 +05:30
def self.com
yield if com?
end
2020-06-23 00:09:42 +05:30
def self.staging?
2021-09-04 01:27:46 +05:30
Gitlab.config.gitlab.url == Gitlab::Saas.staging_com_url
2020-06-23 00:09:42 +05:30
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?
2021-09-04 01:27:46 +05:30
Gitlab.config.gitlab.url == Gitlab::Saas.dev_url
2018-10-15 14:42:47 +05:30
end
def self.gl_subdomain?
2021-09-04 01:27:46 +05:30
Gitlab::Saas.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
2021-06-08 01:23:25 +05:30
def self.extensions
if jh?
%w[ee jh]
elsif ee?
%w[ee]
else
%w[]
end
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
2021-04-29 21:17:54 +05:30
def self.jh?
@is_jh ||=
ee? &&
root.join('jh').exist? &&
!%w[true 1].include?(ENV['EE_ONLY'].to_s)
end
2019-09-30 21:07:59 +05:30
def self.ee
yield if ee?
2019-06-05 12:25:43 +05:30
end
2021-04-29 21:17:54 +05:30
def self.jh
yield if jh?
end
2019-06-05 12:25:43 +05:30
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?
2021-03-11 19:13:27 +05:30
return false unless ::Gitlab::CurrentSettings.current_application_settings?
# `maintenance_mode` column was added to the `current_settings` table in 13.2
# When upgrading from < 13.2 to >=13.8 `maintenance_mode` will not be
# found in settings.
# `Gitlab::CurrentSettings#uncached_application_settings` in
# lib/gitlab/current_settings.rb is expected to handle such cases, and use
# the default value for the setting instead, but in this case, it doesn't,
# see https://gitlab.com/gitlab-org/gitlab/-/issues/321836
# As a work around, we check if the setting method is available
return false unless ::Gitlab::CurrentSettings.respond_to?(:maintenance_mode)
2021-02-22 17:27:13 +05:30
::Gitlab::CurrentSettings.maintenance_mode
end
2015-04-26 12:48:37 +05:30
end