2018-09-14 01:42:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-06-10 03:59:39 -04:00
|
|
|
# RootController
|
|
|
|
#
|
|
|
|
# This controller exists solely to handle requests to `root_url`. When a user is
|
|
|
|
# logged in and has customized their `dashboard` setting, they will be
|
|
|
|
# redirected to their preferred location.
|
|
|
|
#
|
|
|
|
# For users who haven't customized the setting, we simply delegate to
|
|
|
|
# `DashboardController#show`, which is the default.
|
2015-09-08 09:49:20 -04:00
|
|
|
class RootController < Dashboard::ProjectsController
|
2017-01-28 21:22:13 -05:00
|
|
|
skip_before_action :authenticate_user!, only: [:index]
|
2017-02-24 12:55:32 -05:00
|
|
|
|
|
|
|
before_action :redirect_unlogged_user, if: -> { current_user.nil? }
|
|
|
|
before_action :redirect_logged_user, if: -> { current_user.present? }
|
2015-06-12 20:53:58 -04:00
|
|
|
|
2015-09-08 09:49:20 -04:00
|
|
|
def index
|
2018-02-20 10:07:54 -05:00
|
|
|
# n+1: https://gitlab.com/gitlab-org/gitlab-ce/issues/37434
|
|
|
|
Gitlab::GitalyClient.allow_n_plus_1_calls do
|
|
|
|
super
|
|
|
|
end
|
2015-06-12 20:53:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-02-24 12:55:32 -05:00
|
|
|
def redirect_unlogged_user
|
|
|
|
if redirect_to_home_page_url?
|
2018-02-02 13:39:55 -05:00
|
|
|
redirect_to(Gitlab::CurrentSettings.home_page_url)
|
2017-02-24 12:55:32 -05:00
|
|
|
else
|
|
|
|
redirect_to(new_user_session_path)
|
|
|
|
end
|
|
|
|
end
|
2015-06-12 20:53:58 -04:00
|
|
|
|
2017-02-24 12:55:32 -05:00
|
|
|
def redirect_logged_user
|
2015-06-12 20:53:58 -04:00
|
|
|
case current_user.dashboard
|
2015-06-10 03:59:39 -04:00
|
|
|
when 'stars'
|
2015-09-08 09:49:20 -04:00
|
|
|
flash.keep
|
2017-02-24 12:55:32 -05:00
|
|
|
redirect_to(starred_dashboard_projects_path)
|
2015-09-25 20:04:20 -04:00
|
|
|
when 'project_activity'
|
2017-02-24 12:55:32 -05:00
|
|
|
redirect_to(activity_dashboard_path)
|
2015-09-25 20:04:20 -04:00
|
|
|
when 'starred_project_activity'
|
2017-02-24 12:55:32 -05:00
|
|
|
redirect_to(activity_dashboard_path(filter: 'starred'))
|
2016-03-24 06:12:45 -04:00
|
|
|
when 'groups'
|
2017-02-24 12:55:32 -05:00
|
|
|
redirect_to(dashboard_groups_path)
|
2016-03-24 06:12:45 -04:00
|
|
|
when 'todos'
|
2017-02-24 12:55:32 -05:00
|
|
|
redirect_to(dashboard_todos_path)
|
2018-03-27 08:16:12 -04:00
|
|
|
when 'issues'
|
|
|
|
redirect_to(issues_dashboard_path(assignee_id: current_user.id))
|
|
|
|
when 'merge_requests'
|
|
|
|
redirect_to(merge_requests_dashboard_path(assignee_id: current_user.id))
|
2015-06-10 03:59:39 -04:00
|
|
|
end
|
|
|
|
end
|
2017-02-24 12:55:32 -05: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
|
2018-02-02 13:39:55 -05:00
|
|
|
return false unless Gitlab::CurrentSettings.home_page_url.present?
|
2017-02-24 12:55:32 -05:00
|
|
|
|
2018-02-02 13:39:55 -05:00
|
|
|
home_page_url = Gitlab::CurrentSettings.home_page_url.chomp('/')
|
2017-02-24 12:55:32 -05:00
|
|
|
root_urls = [Gitlab.config.gitlab['url'].chomp('/'), root_url.chomp('/')]
|
|
|
|
|
|
|
|
root_urls.exclude?(home_page_url)
|
|
|
|
end
|
2015-06-10 03:59:39 -04:00
|
|
|
end
|