2016-11-15 17:56:29 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 17:00:20 +02:00
|
|
|
class HomeController < ApplicationController
|
2020-07-07 16:26:31 +03:00
|
|
|
before_action :redirect_unauthenticated_to_permalinks!
|
2016-03-06 18:52:23 +02:00
|
|
|
before_action :authenticate_user!
|
2018-04-19 02:48:12 +03:00
|
|
|
|
2017-11-21 08:13:37 +02:00
|
|
|
before_action :set_pack
|
2018-04-17 14:51:01 +03:00
|
|
|
before_action :set_referrer_policy_header
|
2016-03-06 18:52:23 +02:00
|
|
|
|
2016-02-22 17:00:20 +02:00
|
|
|
def index
|
2017-07-08 15:51:05 +03:00
|
|
|
@body_classes = 'app-body'
|
2016-08-26 20:12:19 +03:00
|
|
|
end
|
2016-09-29 22:28:21 +03:00
|
|
|
|
2016-08-26 20:12:19 +03:00
|
|
|
private
|
|
|
|
|
2020-07-07 16:26:31 +03:00
|
|
|
def redirect_unauthenticated_to_permalinks!
|
2017-09-15 01:57:08 +03:00
|
|
|
return if user_signed_in?
|
|
|
|
|
|
|
|
matches = request.path.match(/\A\/web\/(statuses|accounts)\/([\d]+)\z/)
|
|
|
|
|
|
|
|
if matches
|
|
|
|
case matches[1]
|
|
|
|
when 'statuses'
|
|
|
|
status = Status.find_by(id: matches[2])
|
|
|
|
|
2019-07-08 13:03:45 +03:00
|
|
|
if status&.distributable?
|
2017-09-15 01:57:08 +03:00
|
|
|
redirect_to(ActivityPub::TagManager.instance.url_for(status))
|
|
|
|
return
|
|
|
|
end
|
|
|
|
when 'accounts'
|
|
|
|
account = Account.find_by(id: matches[2])
|
|
|
|
|
|
|
|
if account
|
|
|
|
redirect_to(ActivityPub::TagManager.instance.url_for(account))
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-05 20:29:36 +02:00
|
|
|
matches = request.path.match(%r{\A/web/timelines/tag/(?<tag>.+)\z})
|
2020-07-07 16:26:31 +03:00
|
|
|
|
2018-03-05 20:29:36 +02:00
|
|
|
redirect_to(matches ? tag_path(CGI.unescape(matches[:tag])) : default_redirect_path)
|
2016-09-28 00:12:33 +03:00
|
|
|
end
|
2017-07-08 15:51:05 +03:00
|
|
|
|
2017-11-21 08:13:37 +02:00
|
|
|
def set_pack
|
|
|
|
use_pack 'home'
|
|
|
|
end
|
|
|
|
|
2017-09-15 01:57:08 +03:00
|
|
|
def default_redirect_path
|
2019-07-30 12:10:46 +03:00
|
|
|
if request.path.start_with?('/web') || whitelist_mode?
|
2017-09-15 01:57:08 +03:00
|
|
|
new_user_session_path
|
|
|
|
elsif single_user_mode?
|
2019-07-19 02:44:42 +03:00
|
|
|
short_account_path(Account.local.without_suspended.where('id > 0').first)
|
2017-09-15 01:57:08 +03:00
|
|
|
else
|
|
|
|
about_path
|
|
|
|
end
|
|
|
|
end
|
2018-04-17 14:51:01 +03:00
|
|
|
|
|
|
|
def set_referrer_policy_header
|
|
|
|
response.headers['Referrer-Policy'] = 'origin'
|
|
|
|
end
|
2016-02-22 17:00:20 +02:00
|
|
|
end
|