debian-mirror-gitlab/app/controllers/root_controller.rb

56 lines
1.7 KiB
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
# 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-25 12:07:36 +05:30
class RootController < Dashboard::ProjectsController
2017-08-17 22:00:37 +05:30
skip_before_action :authenticate_user!, only: [:index]
before_action :redirect_unlogged_user, if: -> { current_user.nil? }
before_action :redirect_logged_user, if: -> { current_user.present? }
2015-09-11 14:41:01 +05:30
2015-09-25 12:07:36 +05:30
def index
2015-09-11 14:41:01 +05:30
super
end
private
2017-08-17 22:00:37 +05:30
def redirect_unlogged_user
if redirect_to_home_page_url?
redirect_to(current_application_settings.home_page_url)
else
redirect_to(new_user_session_path)
end
end
2015-09-11 14:41:01 +05:30
2017-08-17 22:00:37 +05:30
def redirect_logged_user
2015-09-11 14:41:01 +05:30
case current_user.dashboard
when 'stars'
2015-09-25 12:07:36 +05:30
flash.keep
2017-08-17 22:00:37 +05:30
redirect_to(starred_dashboard_projects_path)
2015-10-24 18:46:33 +05:30
when 'project_activity'
2017-08-17 22:00:37 +05:30
redirect_to(activity_dashboard_path)
2015-10-24 18:46:33 +05:30
when 'starred_project_activity'
2017-08-17 22:00:37 +05:30
redirect_to(activity_dashboard_path(filter: 'starred'))
2016-06-02 11:05:42 +05:30
when 'groups'
2017-08-17 22:00:37 +05:30
redirect_to(dashboard_groups_path)
2016-06-02 11:05:42 +05:30
when 'todos'
2017-08-17 22:00:37 +05:30
redirect_to(dashboard_todos_path)
2015-09-11 14:41:01 +05:30
end
end
2017-08-17 22:00:37 +05:30
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('/')]
root_urls.exclude?(home_page_url)
end
2015-09-11 14:41:01 +05:30
end