debian-mirror-gitlab/lib/gitlab.rb

78 lines
1.8 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-10-15 14:42:47 +05:30
require_dependency 'gitlab/popen'
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-05-30 16:15:17 +05:30
result = Gitlab::Popen.popen_with_detail(%W[#{config.git.bin_path} log --pretty=format:%h -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
2018-05-09 12:01:36 +05:30
APP_DIRS_PATTERN = %r{^/?(app|config|ee|lib|spec|\(\w*\))}
2018-10-15 14:42:47 +05:30
SUBDOMAIN_REGEX = %r{\Ahttps://[a-z0-9]+\.gitlab\.com\z}
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?
Object.const_defined?(:License)
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