2016-11-15 09:56:29 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 09:00:20 -06:00
|
|
|
class HomeController < ApplicationController
|
2020-07-07 08:26:31 -05:00
|
|
|
before_action :redirect_unauthenticated_to_permalinks!
|
2016-03-06 10:52:23 -06:00
|
|
|
before_action :authenticate_user!
|
2018-04-17 06:51:01 -05:00
|
|
|
before_action :set_referrer_policy_header
|
2016-03-06 10:52:23 -06:00
|
|
|
|
2016-02-22 09:00:20 -06:00
|
|
|
def index
|
2017-07-08 07:51:05 -05:00
|
|
|
@body_classes = 'app-body'
|
2016-08-26 12:12:19 -05:00
|
|
|
end
|
2016-09-29 14:28:21 -05:00
|
|
|
|
2016-08-26 12:12:19 -05:00
|
|
|
private
|
|
|
|
|
2020-07-07 08:26:31 -05:00
|
|
|
def redirect_unauthenticated_to_permalinks!
|
2017-09-14 17:57:08 -05:00
|
|
|
return if user_signed_in?
|
|
|
|
|
2021-09-25 22:46:13 -05:00
|
|
|
redirect_to(PermalinkRedirector.new(request.path).redirect_path || default_redirect_path)
|
2016-09-27 16:12:33 -05:00
|
|
|
end
|
2017-07-08 07:51:05 -05:00
|
|
|
|
2017-09-14 17:57:08 -05:00
|
|
|
def default_redirect_path
|
2019-07-30 04:10:46 -05:00
|
|
|
if request.path.start_with?('/web') || whitelist_mode?
|
2017-09-14 17:57:08 -05:00
|
|
|
new_user_session_path
|
|
|
|
elsif single_user_mode?
|
2019-07-18 18:44:42 -05:00
|
|
|
short_account_path(Account.local.without_suspended.where('id > 0').first)
|
2017-09-14 17:57:08 -05:00
|
|
|
else
|
|
|
|
about_path
|
|
|
|
end
|
|
|
|
end
|
2018-04-17 06:51:01 -05:00
|
|
|
|
|
|
|
def set_referrer_policy_header
|
|
|
|
response.headers['Referrer-Policy'] = 'origin'
|
|
|
|
end
|
2016-02-22 09:00:20 -06:00
|
|
|
end
|