summaryrefslogtreecommitdiff
path: root/lib/gitlab.rb
diff options
context:
space:
mode:
authorOswaldo Ferreira <oswaldo@gitlab.com>2018-04-13 14:20:29 -0300
committerOswaldo Ferreira <oswaldo@gitlab.com>2018-04-13 14:52:33 -0300
commit2c8d4f1a450f15ea7e5bd731c0149287ca8e4e73 (patch)
tree90640147136a58cfb2e72819ffbe82a639b100f9 /lib/gitlab.rb
parent3a1b961dfaec131cad7472fea202d4092c1880d6 (diff)
downloadgitlab-ce-2c8d4f1a450f15ea7e5bd731c0149287ca8e4e73.tar.gz
Backport GitLab domain helper methods
Diffstat (limited to 'lib/gitlab.rb')
-rw-r--r--lib/gitlab.rb17
1 files changed, 7 insertions, 10 deletions
diff --git a/lib/gitlab.rb b/lib/gitlab.rb
index 37ce01925bb..2526a870976 100644
--- a/lib/gitlab.rb
+++ b/lib/gitlab.rb
@@ -3,21 +3,18 @@ require_dependency 'gitlab/git'
module Gitlab
COM_URL = 'https://gitlab.com'.freeze
APP_DIRS_PATTERN = %r{^/?(app|config|ee|lib|spec|\(\w*\))}
+ SUBDOMAIN_REGEX = %r{\Ahttps://[a-z0-9]+\.gitlab\.com\z}
def self.com?
- # Check `staging?` as well to keep parity with gitlab.com
- Gitlab.config.gitlab.url == COM_URL || staging?
+ # Check `gl_subdomain?` as well to keep parity with gitlab.com
+ Gitlab.config.gitlab.url == COM_URL || gl_subdomain?
end
- def self.staging?
- Gitlab.config.gitlab.url == 'https://staging.gitlab.com'
+ def self.gl_subdomain?
+ SUBDOMAIN_REGEX === Gitlab.config.gitlab.url
end
- def self.dev?
- Gitlab.config.gitlab.url == 'https://dev.gitlab.org'
- end
-
- def self.inc_controlled?
- dev? || staging? || com?
+ def self.dev_env_or_com?
+ Rails.env.test? || Rails.env.development? || com?
end
end