2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 07:00:20 -08:00
|
|
|
class HomeController < ApplicationController
|
2016-03-06 08:52:23 -08:00
|
|
|
before_action :authenticate_user!
|
2018-04-17 04:51:01 -07:00
|
|
|
before_action :set_referrer_policy_header
|
2017-07-08 05:51:05 -07:00
|
|
|
before_action :set_initial_state_json
|
2016-03-06 08:52:23 -08:00
|
|
|
|
2016-02-22 07:00:20 -08:00
|
|
|
def index
|
2017-07-08 05:51:05 -07:00
|
|
|
@body_classes = 'app-body'
|
2016-08-26 10:12:19 -07:00
|
|
|
end
|
2016-09-29 12:28:21 -07:00
|
|
|
|
2016-08-26 10:12:19 -07:00
|
|
|
private
|
|
|
|
|
2016-09-27 14:12:33 -07:00
|
|
|
def authenticate_user!
|
2017-09-14 15:57:08 -07: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])
|
|
|
|
|
|
|
|
if status && (status.public_visibility? || status.unlisted_visibility?)
|
|
|
|
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 10:29:36 -08:00
|
|
|
matches = request.path.match(%r{\A/web/timelines/tag/(?<tag>.+)\z})
|
|
|
|
redirect_to(matches ? tag_path(CGI.unescape(matches[:tag])) : default_redirect_path)
|
2016-09-27 14:12:33 -07:00
|
|
|
end
|
2017-07-08 05:51:05 -07:00
|
|
|
|
|
|
|
def set_initial_state_json
|
2017-07-11 06:27:59 -07:00
|
|
|
serializable_resource = ActiveModelSerializers::SerializableResource.new(InitialStatePresenter.new(initial_state_params), serializer: InitialStateSerializer)
|
2017-07-08 05:51:05 -07:00
|
|
|
@initial_state_json = serializable_resource.to_json
|
|
|
|
end
|
2017-07-11 06:27:59 -07:00
|
|
|
|
|
|
|
def initial_state_params
|
|
|
|
{
|
|
|
|
settings: Web::Setting.find_by(user: current_user)&.data || {},
|
2017-07-13 13:15:32 -07:00
|
|
|
push_subscription: current_account.user.web_push_subscription(current_session),
|
2017-07-11 06:27:59 -07:00
|
|
|
current_account: current_account,
|
|
|
|
token: current_session.token,
|
|
|
|
admin: Account.find_local(Setting.site_contact_username),
|
|
|
|
}
|
|
|
|
end
|
2017-09-14 15:57:08 -07:00
|
|
|
|
|
|
|
def default_redirect_path
|
|
|
|
if request.path.start_with?('/web')
|
|
|
|
new_user_session_path
|
|
|
|
elsif single_user_mode?
|
2018-08-11 02:53:10 -07:00
|
|
|
short_account_path(Account.local.where(suspended: false).first)
|
2017-09-14 15:57:08 -07:00
|
|
|
else
|
|
|
|
about_path
|
|
|
|
end
|
|
|
|
end
|
2018-04-17 04:51:01 -07:00
|
|
|
|
|
|
|
def set_referrer_policy_header
|
|
|
|
response.headers['Referrer-Policy'] = 'origin'
|
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|