2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-27 21:12:33 +00:00
|
|
|
class AboutController < ApplicationController
|
2019-03-12 16:34:00 +00:00
|
|
|
layout 'public'
|
|
|
|
|
2019-09-19 09:09:05 +00:00
|
|
|
before_action :require_open_federation!, only: [:show, :more]
|
2019-07-08 10:03:45 +00:00
|
|
|
before_action :set_body_classes, only: :show
|
|
|
|
before_action :set_instance_presenter
|
2019-08-19 09:35:48 +00:00
|
|
|
before_action :set_expires_in, only: [:show, :more, :terms]
|
2016-11-01 17:03:51 +00:00
|
|
|
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 08:48:50 +00:00
|
|
|
skip_before_action :require_functional!, only: [:more, :terms]
|
2019-07-17 17:29:37 +00:00
|
|
|
|
2019-07-08 10:03:45 +00:00
|
|
|
def show; end
|
2017-04-02 02:10:22 +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
|
|
|
|
|
|
|
toc_generator = TOCGenerator.new(@instance_presenter.site_extended_description)
|
|
|
|
|
|
|
|
@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-03-12 16:34:00 +00:00
|
|
|
def terms; end
|
2016-11-01 17:03:51 +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
|