Browse Source

Add instance-wide setting to disable profile directory (#9497)

* Add instance-wide setting to disable profile directory

Fixes #9496

When the profile directory is disabled:
- The “discoverable” setting is hidden from users
- The “profile directory” link is not shown on public pages
- /explore returns 404

* Move Setting.profile_directory check to a before_action filter
pull/4/head
ThibG 5 years ago
committed by Eugen Rochko
parent
commit
720daa8143
10 changed files with 29 additions and 3 deletions
  1. +1
    -0
      app/controllers/admin/dashboard_controller.rb
  2. +2
    -0
      app/controllers/admin/settings_controller.rb
  3. +5
    -0
      app/controllers/directories_controller.rb
  4. +2
    -0
      app/models/form/admin_settings.rb
  5. +6
    -0
      app/views/admin/dashboard/index.html.haml
  6. +3
    -0
      app/views/admin/settings/edit.html.haml
  7. +2
    -1
      app/views/layouts/public.html.haml
  8. +3
    -2
      app/views/settings/profiles/show.html.haml
  9. +4
    -0
      config/locales/en.yml
  10. +1
    -0
      config/settings.yml

+ 1
- 0
app/controllers/admin/dashboard_controller.rb View File

@ -28,6 +28,7 @@ module Admin
@pam_enabled = ENV['PAM_ENABLED'] == 'true'
@hidden_service = ENV['ALLOW_ACCESS_TO_HIDDEN_SERVICE'] == 'true'
@trending_hashtags = TrendingTags.get(7)
@profile_directory = Setting.profile_directory
end
private

+ 2
- 0
app/controllers/admin/settings_controller.rb View File

@ -26,6 +26,7 @@ module Admin
show_known_fediverse_at_about_page
preview_sensitive_media
custom_css
profile_directory
).freeze
BOOLEAN_SETTINGS = %w(
@ -37,6 +38,7 @@ module Admin
peers_api_enabled
show_known_fediverse_at_about_page
preview_sensitive_media
profile_directory
).freeze
UPLOAD_SETTINGS = %w(

+ 5
- 0
app/controllers/directories_controller.rb View File

@ -3,6 +3,7 @@
class DirectoriesController < ApplicationController
layout 'public'
before_action :check_enabled
before_action :set_instance_presenter
before_action :set_tag, only: :show
before_action :set_tags
@ -18,6 +19,10 @@ class DirectoriesController < ApplicationController
private
def check_enabled
return not_found unless Setting.profile_directory
end
def set_tag
@tag = Tag.discoverable.find_by!(name: params[:id].downcase)
end

+ 2
- 0
app/models/form/admin_settings.rb View File

@ -44,6 +44,8 @@ class Form::AdminSettings
:preview_sensitive_media=,
:custom_css,
:custom_css=,
:profile_directory,
:profile_directory=,
to: Setting
)
end

+ 6
- 0
app/views/admin/dashboard/index.html.haml View File

@ -57,6 +57,12 @@
%span.pull-right.positive-hint= fa_icon 'check fw'
- else
%span.pull-right.negative-hint= fa_icon 'times fw'
%li
= link_to t('admin.dashboard.feature_profile_directory'), edit_admin_settings_path
- if @profile_directory
%span.pull-right.positive-hint= fa_icon 'check fw'
- else
%span.pull-right.negative-hint= fa_icon 'times fw'
%li
= link_to t('admin.dashboard.feature_relay'), admin_relays_path
- if @relay_enabled

+ 3
- 0
app/views/admin/settings/edit.html.haml View File

@ -62,6 +62,9 @@
.fields-group
= f.input :preview_sensitive_media, as: :boolean, wrapper: :with_label, label: t('admin.settings.preview_sensitive_media.title'), hint: t('admin.settings.preview_sensitive_media.desc_html')
.fields-group
= f.input :profile_directory, as: :boolean, wrapper: :with_label, label: t('admin.settings.profile_directory.title'), hint: t('admin.settings.profile_directory.desc_html')
%hr.spacer/
.fields-group

+ 2
- 1
app/views/layouts/public.html.haml View File

@ -9,7 +9,8 @@
= link_to root_url, class: 'brand' do
= image_tag asset_pack_path('logo_full.svg'), alt: 'Mastodon'
= link_to t('directories.directory'), explore_path, class: 'nav-link'
- if Setting.profile_directory
= link_to t('directories.directory'), explore_path, class: 'nav-link'
= link_to t('about.about_this'), about_more_path, class: 'nav-link'
= link_to t('about.apps'), 'https://joinmastodon.org/apps', class: 'nav-link'
.nav-center

+ 3
- 2
app/views/settings/profiles/show.html.haml View File

@ -26,8 +26,9 @@
.fields-group
= f.input :bot, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.bot')
.fields-group
= f.input :discoverable, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.discoverable_html', min_followers: Account::MIN_FOLLOWERS_DISCOVERY, path: explore_path)
- if Setting.profile_directory
.fields-group
= f.input :discoverable, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.discoverable_html', min_followers: Account::MIN_FOLLOWERS_DISCOVERY, path: explore_path)
%hr.spacer/

+ 4
- 0
config/locales/en.yml View File

@ -229,6 +229,7 @@ en:
config: Configuration
feature_deletions: Account deletions
feature_invites: Invite links
feature_profile_directory: Profile directory
feature_registrations: Registrations
feature_relay: Federation relay
features: Features
@ -376,6 +377,9 @@ en:
preview_sensitive_media:
desc_html: Link previews on other websites will display a thumbnail even if the media is marked as sensitive
title: Show sensitive media in OpenGraph previews
profile_directory:
desc_html: Allow users to be discoverable
title: Enable profile directory
registrations:
closed_message:
desc_html: Displayed on frontpage when registrations are closed. You can use HTML tags

+ 1
- 0
config/settings.yml View File

@ -15,6 +15,7 @@ defaults: &defaults
site_contact_username: ''
site_contact_email: ''
open_registrations: true
profile_directory: true
closed_registrations_message: ''
open_deletion: true
min_invite_role: 'admin'

Loading…
Cancel
Save