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