]> cat aescling's git repositories - mastodon.git/commitdiff
Add a per-user setting to hide followers count
authorThibaut Girka <thib@sitedethib.com>
Tue, 18 Dec 2018 10:24:44 +0000 (11:24 +0100)
committerThibG <thib@sitedethib.com>
Thu, 20 Dec 2018 13:51:12 +0000 (14:51 +0100)
This is only available if the instance-wide setting isn't set and allows
people to hide their own followers count. This does not hide others' to
them.

app/controllers/follower_accounts_controller.rb
app/controllers/settings/preferences_controller.rb
app/helpers/stream_entries_helper.rb
app/lib/user_settings_decorator.rb
app/models/user.rb
app/serializers/rest/account_serializer.rb
app/views/accounts/_header.html.haml
app/views/directories/index.html.haml
app/views/settings/preferences/show.html.haml
config/locales/simple_form.en.yml

index 13043b1b98385a9d6b7e2b884801a32e10bde160..f985f0effab6987b5ec43282d5333dbe10082ff5 100644 (file)
@@ -37,7 +37,7 @@ class FollowerAccountsController < ApplicationController
 
   def collection_presenter
     options = { type: :ordered }
-    options[:size] = @account.followers_count unless Setting.hide_followers_count
+    options[:size] = @account.followers_count unless Setting.hide_followers_count || @account.user&.setting_hide_followers_count
     if params[:page].present?
       ActivityPub::CollectionPresenter.new(
         id: account_followers_url(@account, page: params.fetch(:page, 1)),
index b70844b65950f656b9e75365ce249ad61db79bd9..d4932afd60f7a8e4a0adc4fd9705a1d86805cda8 100644 (file)
@@ -43,6 +43,7 @@ class Settings::PreferencesController < Settings::BaseController
       :setting_system_font_ui,
       :setting_noindex,
       :setting_hide_network,
+      :setting_hide_followers_count,
       :setting_aggregate_reblogs,
       notification_emails: %i(follow follow_request reblog favourite mention digest report),
       interactions: %i(must_be_follower must_be_following)
index e37cfbda4854fb987ad0b7ee918aa78272e13996..fce03d03eda1bf4c503684538d99a6bb4ea33cc6 100644 (file)
@@ -73,7 +73,7 @@ module StreamEntriesHelper
       ].join(' '),
     ]
 
-    unless Setting.hide_followers_count
+    unless Setting.hide_followers_count || account.user&.setting_hide_followers_count
       prepend_stats << [
         number_to_human(account.followers_count, strip_insignificant_zeros: true),
         I18n.t('accounts.followers', count: account.followers_count),
index 559e00d2077c3fa23feacf0d6b823309b10ec60a..569255f6ea58cf4c5fe7b063aea13357bca92e2b 100644 (file)
@@ -30,6 +30,7 @@ class UserSettingsDecorator
     user.settings['reduce_motion']       = reduce_motion_preference if change?('setting_reduce_motion')
     user.settings['system_font_ui']      = system_font_ui_preference if change?('setting_system_font_ui')
     user.settings['noindex']             = noindex_preference if change?('setting_noindex')
+    user.settings['hide_followers_count']= hide_followers_count_preference if change?('setting_hide_followers_count')
     user.settings['flavour']             = flavour_preference if change?('setting_flavour')
     user.settings['skin']                = skin_preference if change?('setting_skin')
     user.settings['hide_network']        = hide_network_preference if change?('setting_hide_network')
@@ -92,6 +93,10 @@ class UserSettingsDecorator
     boolean_cast_setting 'setting_noindex'
   end
 
+  def hide_followers_count_preference
+    boolean_cast_setting 'setting_hide_followers_count'
+  end
+
   def flavour_preference
     settings['setting_flavour']
   end
index 66896257ad9911b65f7e2ffeadf324163f5fefbf..a6c25342ad702442250b7f5bb9705ed8fc3a0236 100644 (file)
@@ -94,7 +94,7 @@ class User < ApplicationRecord
   has_many :session_activations, dependent: :destroy
 
   delegate :auto_play_gif, :default_sensitive, :unfollow_modal, :boost_modal, :favourite_modal, :delete_modal,
-           :reduce_motion, :system_font_ui, :noindex, :flavour, :skin, :display_media, :hide_network,
+           :reduce_motion, :system_font_ui, :noindex, :flavour, :skin, :display_media, :hide_network, :hide_followers_count,
            :expand_spoilers, :default_language, :aggregate_reblogs, to: :settings, prefix: :setting, allow_nil: false
 
   attr_reader :invite_code
index a3f2ad036c4abc4f32e246a9127dbf5ada0eade0..c34d23452115f78ee6ee3e8a82715db39bffde3a 100644 (file)
@@ -53,6 +53,6 @@ class REST::AccountSerializer < ActiveModel::Serializer
   end
 
   def followers_count
-    Setting.hide_followers_count ? -1 : object.followers_count
+    (Setting.hide_followers_count || object.user&.setting_hide_followers_count) ? -1 : object.followers_count
   end
 end
index 458c86ce508e7888ba2e12db4214fc63c6a94b9a..87cb0a91f7a6415a3305bd04f51481f189df8574 100644 (file)
@@ -24,8 +24,8 @@
               %span.counter-label= t('accounts.following', count: account.following_count)
 
           .counter{ class: active_nav_class(account_followers_url(account)) }
-            = link_to account_followers_url(account), title: Setting.hide_followers_count ? nil : number_with_delimiter(account.followers_count) do
-              %span.counter-number= Setting.hide_followers_count ? '-' : (number_to_human account.followers_count, strip_insignificant_zeros: true)
+            = link_to account_followers_url(account), title: (Setting.hide_followers_count || account.user&.setting_hide_followers_count) ? nil : number_with_delimiter(account.followers_count) do
+              %span.counter-number= (Setting.hide_followers_count || account.user&.setting_hide_followers_count) ? '-' : (number_to_human account.followers_count, strip_insignificant_zeros: true)
               %span.counter-label= t('accounts.followers', count: account.followers_count)
         .spacer
         .public-account-header__tabs__tabs__buttons
index 8d136a31fb12f7b27137cb3262169d9a941da049..0dc5e7d76f7a0907dbdd05ae8b514f96c08e1727 100644 (file)
@@ -29,7 +29,7 @@
                   = number_to_human account.statuses_count, strip_insignificant_zeros: true
                   %small= t('accounts.posts', count: account.statuses_count).downcase
                 %td.accounts-table__count.optional
-                  = Setting.hide_followers_count ? '-' : (number_to_human account.followers_count, strip_insignificant_zeros: true)
+                  = (Setting.hide_followers_count || account.user&.setting_hide_followers_count) ? '-' : (number_to_human account.followers_count, strip_insignificant_zeros: true)
                   %small= t('accounts.followers', count: account.followers_count).downcase
                 %td.accounts-table__count
                   - if account.last_status_at.present?
index 53390b6d1f280043d4aa10a2c136ca565ec1bd7b..6510e0560b922fbdc4bb7be7b9371849d44f8e5c 100644 (file)
   .fields-group
     = f.input :setting_hide_network, as: :boolean, wrapper: :with_label
 
+  - unless Setting.hide_followers_count
+    .fields-group
+      = f.input :setting_hide_followers_count, as: :boolean, wrapper: :with_label
+
   %hr#settings_web/
 
   .fields-group
index ed6e6faa0690f65077b45037cb29a88e0fffdeb7..2976eee6e946ab42cb667be3860a2996bf2e913f 100644 (file)
@@ -79,6 +79,7 @@ en:
         setting_display_media_show_all: Show all
         setting_expand_spoilers: Always expand toots marked with content warnings
         setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only)
+        setting_hide_followers_count: Hide your followers count
         setting_hide_network: Hide your network
         setting_noindex: Opt-out of search engine indexing
         setting_reduce_motion: Reduce motion in animations