2013-12-06 10:05:34 -05:00
|
|
|
require 'gon'
|
2015-08-04 18:21:12 -04:00
|
|
|
require 'fogbugz'
|
2013-12-06 10:05:34 -05:00
|
|
|
|
2013-08-21 05:33:12 -04:00
|
|
|
class ApplicationController < ActionController::Base
|
2015-01-08 12:53:35 -05:00
|
|
|
include Gitlab::CurrentSettings
|
2015-09-09 08:37:34 -04:00
|
|
|
include GitlabRoutingHelper
|
|
|
|
include PageLayoutHelper
|
2015-01-08 12:53:35 -05:00
|
|
|
|
2015-03-12 18:37:00 -04:00
|
|
|
PER_PAGE = 20
|
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authenticate_user_from_token!
|
|
|
|
before_action :authenticate_user!
|
2015-11-11 23:25:31 -05:00
|
|
|
before_action :validate_user_service_ticket!
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :reject_blocked!
|
|
|
|
before_action :check_password_expiration
|
2015-12-24 15:58:46 -05:00
|
|
|
before_action :check_2fa_requirement
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :ldap_security_check
|
|
|
|
before_action :default_headers
|
|
|
|
before_action :add_gon_variables
|
|
|
|
before_action :configure_permitted_parameters, if: :devise_controller?
|
|
|
|
before_action :require_email, unless: :devise_controller?
|
2012-06-24 03:01:42 -04:00
|
|
|
|
2014-10-06 09:18:25 -04:00
|
|
|
protect_from_forgery with: :exception
|
2012-06-24 03:01:42 -04:00
|
|
|
|
2015-01-08 12:53:35 -05:00
|
|
|
helper_method :abilities, :can?, :current_application_settings
|
2015-08-04 18:21:12 -04:00
|
|
|
helper_method :import_sources_enabled?, :github_import_enabled?, :github_import_configured?, :gitlab_import_enabled?, :gitlab_import_configured?, :bitbucket_import_enabled?, :bitbucket_import_configured?, :gitorious_import_enabled?, :google_code_import_enabled?, :fogbugz_import_enabled?, :git_import_enabled?
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-05-31 16:36:52 -04:00
|
|
|
rescue_from Encoding::CompatibilityError do |exception|
|
2012-11-06 15:15:25 -05:00
|
|
|
log_exception(exception)
|
2012-09-26 16:24:52 -04:00
|
|
|
render "errors/encoding", layout: "errors", status: 500
|
2012-05-31 16:36:52 -04:00
|
|
|
end
|
|
|
|
|
2012-02-22 00:14:54 -05:00
|
|
|
rescue_from ActiveRecord::RecordNotFound do |exception|
|
2012-11-06 15:15:25 -05:00
|
|
|
log_exception(exception)
|
2015-10-09 13:07:29 -04:00
|
|
|
render_404
|
2011-10-09 17:15:28 -04:00
|
|
|
end
|
|
|
|
|
2015-10-20 03:28:28 -04:00
|
|
|
def redirect_back_or_default(default: root_path, options: {})
|
|
|
|
redirect_to request.referer.present? ? :back : default, options
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
protected
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2014-07-09 08:42:25 -04:00
|
|
|
# From https://github.com/plataformatec/devise/wiki/How-To:-Simple-Token-Authentication-Example
|
2014-07-10 07:10:37 -04:00
|
|
|
# https://gist.github.com/josevalim/fb706b1e933ef01e4fb6
|
2014-07-09 08:42:25 -04:00
|
|
|
def authenticate_user_from_token!
|
2014-07-10 07:10:37 -04:00
|
|
|
user_token = if params[:authenticity_token].presence
|
|
|
|
params[:authenticity_token].presence
|
|
|
|
elsif params[:private_token].presence
|
|
|
|
params[:private_token].presence
|
|
|
|
end
|
2014-07-09 08:42:25 -04:00
|
|
|
user = user_token && User.find_by_authentication_token(user_token.to_s)
|
|
|
|
|
|
|
|
if user
|
|
|
|
# Notice we are passing store false, so the user is not
|
|
|
|
# actually stored in the session and a token is needed
|
|
|
|
# for every request. If you want the token to work as a
|
|
|
|
# sign in token, you can simply remove store: false.
|
|
|
|
sign_in user, store: false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-16 21:12:15 -05:00
|
|
|
def authenticate_user!(*args)
|
2015-10-28 12:39:22 -04:00
|
|
|
if redirect_to_home_page_url?
|
|
|
|
redirect_to current_application_settings.home_page_url and return
|
2015-01-16 19:01:15 -05:00
|
|
|
end
|
|
|
|
|
2015-01-16 21:12:15 -05:00
|
|
|
super(*args)
|
2015-01-16 19:01:15 -05:00
|
|
|
end
|
|
|
|
|
2012-11-06 15:15:25 -05:00
|
|
|
def log_exception(exception)
|
|
|
|
application_trace = ActionDispatch::ExceptionWrapper.new(env, exception).application_trace
|
|
|
|
application_trace.map!{ |t| " #{t}\n" }
|
|
|
|
logger.error "\n#{exception.class.name} (#{exception.message}):\n#{application_trace.join}"
|
|
|
|
end
|
|
|
|
|
2012-04-16 16:33:03 -04:00
|
|
|
def reject_blocked!
|
2013-03-04 09:52:30 -05:00
|
|
|
if current_user && current_user.blocked?
|
2012-06-01 09:56:28 -04:00
|
|
|
sign_out current_user
|
2013-05-28 13:48:51 -04:00
|
|
|
flash[:alert] = "Your account is blocked. Retry when an admin has unblocked it."
|
2012-04-16 16:33:03 -04:00
|
|
|
redirect_to new_user_session_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def after_sign_in_path_for(resource)
|
2013-03-04 09:52:30 -05:00
|
|
|
if resource.is_a?(User) && resource.respond_to?(:blocked?) && resource.blocked?
|
2012-04-13 01:12:34 -04:00
|
|
|
sign_out resource
|
2013-05-28 13:48:51 -04:00
|
|
|
flash[:alert] = "Your account is blocked. Retry when an admin has unblocked it."
|
2012-04-13 01:12:34 -04:00
|
|
|
new_user_session_path
|
|
|
|
else
|
2014-07-11 06:24:11 -04:00
|
|
|
stored_location_for(:redirect) || stored_location_for(resource) || root_path
|
2012-04-13 01:12:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-18 06:06:50 -04:00
|
|
|
def after_sign_out_path_for(resource)
|
2015-06-17 10:33:51 -04:00
|
|
|
current_application_settings.after_sign_out_path || new_user_session_path
|
2015-04-18 06:06:50 -04:00
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def abilities
|
2014-10-19 04:50:23 -04:00
|
|
|
Ability.abilities
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def can?(object, action, subject)
|
|
|
|
abilities.allowed?(object, action, subject)
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
def project
|
2014-10-19 17:20:55 -04:00
|
|
|
unless @project
|
2015-01-24 13:02:58 -05:00
|
|
|
namespace = params[:namespace_id]
|
2014-10-19 17:20:55 -04:00
|
|
|
id = params[:project_id] || params[:id]
|
|
|
|
|
|
|
|
# Redirect from
|
|
|
|
# localhost/group/project.git
|
|
|
|
# to
|
|
|
|
# localhost/group/project
|
|
|
|
#
|
|
|
|
if id =~ /\.git\Z/
|
|
|
|
redirect_to request.original_url.gsub(/\.git\Z/, '') and return
|
|
|
|
end
|
|
|
|
|
2015-09-17 09:56:16 -04:00
|
|
|
project_path = "#{namespace}/#{id}"
|
|
|
|
@project = Project.find_with_namespace(project_path)
|
|
|
|
|
2014-10-19 17:20:55 -04:00
|
|
|
if @project and can?(current_user, :read_project, @project)
|
2015-09-17 09:56:16 -04:00
|
|
|
if @project.path_with_namespace != project_path
|
|
|
|
redirect_to request.original_url.gsub(project_path, @project.path_with_namespace) and return
|
|
|
|
end
|
2014-10-19 17:20:55 -04:00
|
|
|
@project
|
|
|
|
elsif current_user.nil?
|
|
|
|
@project = nil
|
|
|
|
authenticate_user!
|
|
|
|
else
|
|
|
|
@project = nil
|
|
|
|
render_404 and return
|
|
|
|
end
|
2012-11-28 23:29:11 -05:00
|
|
|
end
|
2014-10-19 17:20:55 -04:00
|
|
|
@project
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2013-01-03 14:09:18 -05:00
|
|
|
def repository
|
|
|
|
@repository ||= project.repository
|
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def authorize_project!(action)
|
2012-02-22 00:14:54 -05:00
|
|
|
return access_denied! unless can?(current_user, action, project)
|
2011-10-17 06:39:03 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def access_denied!
|
2012-09-26 16:24:52 -04:00
|
|
|
render "errors/access_denied", layout: "errors", status: 404
|
2012-02-22 00:14:54 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def git_not_found!
|
2015-10-14 09:22:03 -04:00
|
|
|
render html: "errors/git_not_found", layout: "errors", status: 404
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def method_missing(method_sym, *arguments, &block)
|
2015-04-10 12:30:02 -04:00
|
|
|
if method_sym.to_s =~ /\Aauthorize_(.*)!\z/
|
2011-10-08 17:36:38 -04:00
|
|
|
authorize_project!($1.to_sym)
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
2011-10-14 11:08:25 -04:00
|
|
|
|
2014-02-07 11:59:55 -05:00
|
|
|
def render_403
|
|
|
|
head :forbidden
|
2011-10-14 11:08:25 -04:00
|
|
|
end
|
2011-10-15 11:51:58 -04:00
|
|
|
|
2014-02-07 11:59:55 -05:00
|
|
|
def render_404
|
|
|
|
render file: Rails.root.join("public", "404"), layout: false, status: "404"
|
2012-12-04 22:14:05 -05:00
|
|
|
end
|
|
|
|
|
2011-10-15 11:51:58 -04:00
|
|
|
def require_non_empty_project
|
2012-09-04 11:37:38 -04:00
|
|
|
redirect_to @project if @project.empty_repo?
|
2011-10-15 11:51:58 -04:00
|
|
|
end
|
2011-11-03 18:37:02 -04:00
|
|
|
|
2011-11-20 15:32:12 -05:00
|
|
|
def no_cache_headers
|
|
|
|
response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
|
|
|
|
response.headers["Pragma"] = "no-cache"
|
|
|
|
response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
|
|
|
|
end
|
2012-01-27 18:49:14 -05:00
|
|
|
|
2013-02-02 13:32:13 -05:00
|
|
|
def default_headers
|
|
|
|
headers['X-Frame-Options'] = 'DENY'
|
|
|
|
headers['X-XSS-Protection'] = '1; mode=block'
|
2013-12-27 06:38:29 -05:00
|
|
|
headers['X-UA-Compatible'] = 'IE=edge'
|
2013-12-30 03:41:05 -05:00
|
|
|
headers['X-Content-Type-Options'] = 'nosniff'
|
2015-07-13 00:37:10 -04:00
|
|
|
# Enabling HSTS for non-standard ports would send clients to the wrong port
|
|
|
|
if Gitlab.config.gitlab.https and Gitlab.config.gitlab.port == 443
|
|
|
|
headers['Strict-Transport-Security'] = 'max-age=31536000'
|
|
|
|
end
|
2013-02-02 13:32:13 -05:00
|
|
|
end
|
2013-02-19 07:37:43 -05:00
|
|
|
|
|
|
|
def add_gon_variables
|
2015-08-25 18:24:53 -04:00
|
|
|
gon.api_version = API::API.version
|
|
|
|
gon.default_avatar_url = URI::join(Gitlab.config.gitlab.url, ActionController::Base.helpers.image_path('no_avatar.png')).to_s
|
2015-01-28 12:28:17 -05:00
|
|
|
gon.default_issues_tracker = Project.new.default_issue_tracker.to_param
|
2015-08-25 18:24:53 -04:00
|
|
|
gon.max_file_size = current_application_settings.max_attachment_size
|
|
|
|
gon.relative_url_root = Gitlab.config.gitlab.relative_url_root
|
|
|
|
gon.user_color_scheme = Gitlab::ColorSchemes.for_user(current_user).css_class
|
2014-06-04 11:07:15 -04:00
|
|
|
|
|
|
|
if current_user
|
|
|
|
gon.current_user_id = current_user.id
|
|
|
|
gon.api_token = current_user.private_token
|
|
|
|
end
|
2013-02-19 07:37:43 -05:00
|
|
|
end
|
2013-06-13 12:53:04 -04:00
|
|
|
|
2015-11-11 23:25:31 -05:00
|
|
|
def validate_user_service_ticket!
|
|
|
|
return unless signed_in? && session[:service_tickets]
|
|
|
|
|
|
|
|
valid = session[:service_tickets].all? do |provider, ticket|
|
|
|
|
Gitlab::OAuth::Session.valid?(provider, ticket)
|
|
|
|
end
|
|
|
|
|
|
|
|
unless valid
|
|
|
|
session[:service_tickets] = nil
|
|
|
|
sign_out current_user
|
|
|
|
redirect_to new_user_session_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-06-13 12:53:04 -04:00
|
|
|
def check_password_expiration
|
2013-09-17 16:37:36 -04:00
|
|
|
if current_user && current_user.password_expires_at && current_user.password_expires_at < Time.now && !current_user.ldap_user?
|
2013-06-13 12:53:04 -04:00
|
|
|
redirect_to new_profile_password_path and return
|
|
|
|
end
|
|
|
|
end
|
2013-08-26 09:30:03 -04:00
|
|
|
|
2015-12-24 15:58:46 -05:00
|
|
|
def check_2fa_requirement
|
2015-12-23 21:02:52 -05:00
|
|
|
if two_factor_authentication_required? && current_user && !current_user.two_factor_enabled && !skip_two_factor?
|
2015-12-23 23:04:41 -05:00
|
|
|
redirect_to new_profile_two_factor_auth_path
|
2015-12-18 15:29:13 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-03-10 11:10:23 -04:00
|
|
|
def ldap_security_check
|
2014-03-11 04:24:07 -04:00
|
|
|
if current_user && current_user.requires_ldap_check?
|
2014-07-30 03:50:50 -04:00
|
|
|
unless Gitlab::LDAP::Access.allowed?(current_user)
|
|
|
|
sign_out current_user
|
|
|
|
flash[:alert] = "Access denied for your LDAP account."
|
|
|
|
redirect_to new_user_session_path
|
2014-03-10 11:10:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-08-26 09:30:03 -04:00
|
|
|
def event_filter
|
|
|
|
filters = cookies['event_filter'].split(',') if cookies['event_filter'].present?
|
|
|
|
@event_filter ||= EventFilter.new(filters)
|
|
|
|
end
|
2013-11-28 04:38:20 -05:00
|
|
|
|
2014-03-14 03:57:39 -04:00
|
|
|
def gitlab_ldap_access(&block)
|
|
|
|
Gitlab::LDAP::Access.open { |access| block.call(access) }
|
2014-03-10 11:10:23 -04:00
|
|
|
end
|
|
|
|
|
2013-11-28 04:38:20 -05:00
|
|
|
# JSON for infinite scroll via Pager object
|
|
|
|
def pager_json(partial, count)
|
|
|
|
html = render_to_string(
|
|
|
|
partial,
|
|
|
|
layout: false,
|
|
|
|
formats: [:html]
|
|
|
|
)
|
|
|
|
|
|
|
|
render json: {
|
|
|
|
html: html,
|
|
|
|
count: count
|
|
|
|
}
|
|
|
|
end
|
2013-11-29 08:05:32 -05:00
|
|
|
|
|
|
|
def view_to_html_string(partial)
|
|
|
|
render_to_string(
|
|
|
|
partial,
|
|
|
|
layout: false,
|
|
|
|
formats: [:html]
|
|
|
|
)
|
|
|
|
end
|
2013-12-10 06:35:10 -05:00
|
|
|
|
|
|
|
def configure_permitted_parameters
|
2015-05-04 16:02:33 -04:00
|
|
|
devise_parameter_sanitizer.for(:sign_in) { |u| u.permit(:username, :email, :password, :login, :remember_me, :otp_attempt) }
|
2013-12-10 06:35:10 -05:00
|
|
|
end
|
2014-02-26 07:06:31 -05:00
|
|
|
|
|
|
|
def hexdigest(string)
|
|
|
|
Digest::SHA1.hexdigest string
|
|
|
|
end
|
2014-04-07 07:09:29 -04:00
|
|
|
|
|
|
|
def require_email
|
|
|
|
if current_user && current_user.temp_oauth_email?
|
|
|
|
redirect_to profile_path, notice: 'Please complete your profile with email address' and return
|
|
|
|
end
|
|
|
|
end
|
2014-12-23 11:49:39 -05:00
|
|
|
|
2014-12-24 04:04:33 -05:00
|
|
|
def set_filters_params
|
2015-02-05 22:15:05 -05:00
|
|
|
params[:sort] ||= 'created_desc'
|
2014-12-23 11:49:39 -05:00
|
|
|
params[:scope] = 'all' if params[:scope].blank?
|
|
|
|
params[:state] = 'opened' if params[:state].blank?
|
|
|
|
|
2015-07-08 18:17:13 -04:00
|
|
|
@sort = params[:sort]
|
2014-12-24 04:04:33 -05:00
|
|
|
@filter_params = params.dup
|
2014-12-23 11:49:39 -05:00
|
|
|
|
|
|
|
if @project
|
2014-12-24 04:04:33 -05:00
|
|
|
@filter_params[:project_id] = @project.id
|
2014-12-23 11:49:39 -05:00
|
|
|
elsif @group
|
2014-12-24 04:04:33 -05:00
|
|
|
@filter_params[:group_id] = @group.id
|
2014-12-23 11:49:39 -05:00
|
|
|
else
|
2014-12-24 05:56:03 -05:00
|
|
|
# TODO: this filter ignore issues/mr created in public or
|
|
|
|
# internal repos where you are not a member. Enable this filter
|
|
|
|
# or improve current implementation to filter only issues you
|
|
|
|
# created or assigned or mentioned
|
|
|
|
#@filter_params[:authorized_only] = true
|
2014-12-23 11:49:39 -05:00
|
|
|
end
|
2014-12-24 04:04:33 -05:00
|
|
|
|
|
|
|
@filter_params
|
2014-12-23 11:49:39 -05:00
|
|
|
end
|
|
|
|
|
2014-12-24 04:04:33 -05:00
|
|
|
def get_issues_collection
|
|
|
|
set_filters_params
|
2015-05-25 07:36:28 -04:00
|
|
|
@issuable_finder = IssuesFinder.new(current_user, @filter_params)
|
|
|
|
@issuable_finder.execute
|
2014-12-24 04:04:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_merge_requests_collection
|
|
|
|
set_filters_params
|
2015-05-25 07:36:28 -04:00
|
|
|
@issuable_finder = MergeRequestsFinder.new(current_user, @filter_params)
|
|
|
|
@issuable_finder.execute
|
2014-12-24 04:04:33 -05:00
|
|
|
end
|
2015-02-17 16:52:32 -05:00
|
|
|
|
2015-08-14 09:56:33 -04:00
|
|
|
def import_sources_enabled?
|
|
|
|
!current_application_settings.import_sources.empty?
|
|
|
|
end
|
|
|
|
|
2015-02-17 16:52:32 -05:00
|
|
|
def github_import_enabled?
|
2015-08-14 09:56:33 -04:00
|
|
|
current_application_settings.import_sources.include?('github')
|
|
|
|
end
|
|
|
|
|
|
|
|
def github_import_configured?
|
2015-07-02 10:33:38 -04:00
|
|
|
Gitlab::OAuth::Provider.enabled?(:github)
|
2015-02-17 16:52:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_import_enabled?
|
2015-08-14 09:56:33 -04:00
|
|
|
request.host != 'gitlab.com' && current_application_settings.import_sources.include?('gitlab')
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_import_configured?
|
2015-07-02 10:33:38 -04:00
|
|
|
Gitlab::OAuth::Provider.enabled?(:gitlab)
|
2015-02-17 16:52:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def bitbucket_import_enabled?
|
2015-08-14 09:56:33 -04:00
|
|
|
current_application_settings.import_sources.include?('bitbucket')
|
|
|
|
end
|
|
|
|
|
|
|
|
def bitbucket_import_configured?
|
2015-07-02 10:33:38 -04:00
|
|
|
Gitlab::OAuth::Provider.enabled?(:bitbucket) && Gitlab::BitbucketImport.public_key.present?
|
2015-02-17 16:52:32 -05:00
|
|
|
end
|
2015-08-14 09:56:33 -04:00
|
|
|
|
|
|
|
def gitorious_import_enabled?
|
|
|
|
current_application_settings.import_sources.include?('gitorious')
|
|
|
|
end
|
|
|
|
|
|
|
|
def google_code_import_enabled?
|
|
|
|
current_application_settings.import_sources.include?('google_code')
|
|
|
|
end
|
|
|
|
|
2015-08-04 18:21:12 -04:00
|
|
|
def fogbugz_import_enabled?
|
|
|
|
current_application_settings.import_sources.include?('fogbugz')
|
|
|
|
end
|
|
|
|
|
2015-08-14 09:56:33 -04:00
|
|
|
def git_import_enabled?
|
|
|
|
current_application_settings.import_sources.include?('git')
|
|
|
|
end
|
2015-10-28 12:39:22 -04:00
|
|
|
|
2015-12-18 15:29:13 -05:00
|
|
|
def two_factor_authentication_required?
|
|
|
|
current_application_settings.require_two_factor_authentication
|
|
|
|
end
|
|
|
|
|
2015-12-23 21:02:52 -05:00
|
|
|
def two_factor_grace_period
|
|
|
|
current_application_settings.two_factor_grace_period
|
|
|
|
end
|
|
|
|
|
2015-12-23 23:04:41 -05:00
|
|
|
def two_factor_grace_period_expired?
|
|
|
|
date = current_user.otp_grace_period_started_at
|
2015-12-23 21:02:52 -05:00
|
|
|
date && (date + two_factor_grace_period.hours) < Time.current
|
|
|
|
end
|
|
|
|
|
|
|
|
def skip_two_factor?
|
|
|
|
session[:skip_tfa] && session[:skip_tfa] > Time.current
|
|
|
|
end
|
|
|
|
|
2015-10-28 12:39:22 -04:00
|
|
|
def redirect_to_home_page_url?
|
|
|
|
# If user is not signed-in and tries to access root_path - redirect him to landing page
|
|
|
|
# Don't redirect to the default URL to prevent endless redirections
|
|
|
|
return false unless current_application_settings.home_page_url.present?
|
|
|
|
|
|
|
|
home_page_url = current_application_settings.home_page_url.chomp('/')
|
|
|
|
root_urls = [Gitlab.config.gitlab['url'].chomp('/'), root_url.chomp('/')]
|
|
|
|
|
|
|
|
return false if root_urls.include?(home_page_url)
|
|
|
|
|
|
|
|
current_user.nil? && root_path == request.path
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|