2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-27 21:12:33 +00:00
|
|
|
class AboutController < ApplicationController
|
2020-12-10 05:27:26 +00:00
|
|
|
include RegistrationSpamConcern
|
|
|
|
|
2019-03-12 16:34:00 +00:00
|
|
|
layout 'public'
|
|
|
|
|
2022-10-06 00:19:45 +00:00
|
|
|
before_action :require_open_federation!, only: [:more]
|
2019-07-08 10:03:45 +00:00
|
|
|
before_action :set_body_classes, only: :show
|
|
|
|
before_action :set_instance_presenter
|
2022-09-29 04:22:12 +00:00
|
|
|
before_action :set_expires_in, only: [:more]
|
2016-11-01 17:03:51 +00:00
|
|
|
|
2022-09-29 04:22:12 +00:00
|
|
|
skip_before_action :require_functional!, only: [:more]
|
2019-07-17 17:29:37 +00:00
|
|
|
|
2019-07-18 23:44:42 +00:00
|
|
|
def more
|
|
|
|
flash.now[:notice] = I18n.t('about.instance_actor_flash') if params[:instance_actor]
|
2019-09-19 09:09:05 +00:00
|
|
|
|
2022-10-05 01:47:56 +00:00
|
|
|
toc_generator = TOCGenerator.new(@instance_presenter.extended_description)
|
2019-09-19 09:09:05 +00:00
|
|
|
|
2021-02-21 18:50:12 +00:00
|
|
|
@rules = Rule.ordered
|
2019-09-19 09:09:05 +00:00
|
|
|
@contents = toc_generator.html
|
|
|
|
@table_of_contents = toc_generator.toc
|
|
|
|
@blocks = DomainBlock.with_user_facing_limitations.by_severity if display_blocks?
|
2019-07-18 23:44:42 +00:00
|
|
|
end
|
2017-01-13 02:24:41 +00:00
|
|
|
|
2019-09-19 09:09:05 +00:00
|
|
|
helper_method :display_blocks?
|
|
|
|
helper_method :display_blocks_rationale?
|
|
|
|
helper_method :public_fetch_mode?
|
|
|
|
helper_method :new_user
|
2019-08-19 09:35:48 +00:00
|
|
|
|
2016-11-01 17:03:51 +00:00
|
|
|
private
|
|
|
|
|
2019-07-30 09:10:46 +00:00
|
|
|
def require_open_federation!
|
|
|
|
not_found if whitelist_mode?
|
|
|
|
end
|
|
|
|
|
2019-09-19 09:09:05 +00:00
|
|
|
def display_blocks?
|
|
|
|
Setting.show_domain_blocks == 'all' || (Setting.show_domain_blocks == 'users' && user_signed_in?)
|
2019-08-19 09:35:48 +00:00
|
|
|
end
|
|
|
|
|
2019-09-19 09:09:05 +00:00
|
|
|
def display_blocks_rationale?
|
|
|
|
Setting.show_domain_blocks_rationale == 'all' || (Setting.show_domain_blocks_rationale == 'users' && user_signed_in?)
|
2019-08-19 09:35:48 +00:00
|
|
|
end
|
|
|
|
|
2017-04-09 12:47:25 +00:00
|
|
|
def new_user
|
2019-04-09 14:06:30 +00:00
|
|
|
User.new.tap do |user|
|
|
|
|
user.build_account
|
|
|
|
user.build_invite_request
|
|
|
|
end
|
2017-04-09 12:47:25 +00:00
|
|
|
end
|
2017-07-11 13:27:59 +00:00
|
|
|
|
2017-04-09 12:47:25 +00:00
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
2019-07-08 10:03:45 +00:00
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@hide_navbar = true
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_expires_in
|
|
|
|
expires_in 0, public: true
|
|
|
|
end
|
2016-09-27 21:12:33 +00:00
|
|
|
end
|