debian-mirror-gitlab/lib/gitlab.rb

90 lines
2.2 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
"Unknown".freeze
end
end
end
end
2017-09-10 17:25:29 +05:30
COM_URL = 'https://gitlab.com'.freeze
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
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
2018-10-15 14:42:47 +05:30
def self.dev_env_or_com?
Rails.env.development? || org? || com?
2016-06-02 11:05:42 +05:30
end
2018-12-05 23:21:45 +05:30
2019-06-05 12:25:43 +05:30
def self.ee?
2019-09-30 21:07:59 +05:30
@is_ee ||=
2019-10-12 21:52:04 +05:30
if ENV['IS_GITLAB_EE'] && !ENV['IS_GITLAB_EE'].empty?
2019-09-30 21:07:59 +05:30
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
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
return 'sidekiq' if Sidekiq.server?
return 'console' if defined?(Rails::Console)
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
2015-04-26 12:48:37 +05:30
end