user: implement User.invisible?/1
authorAriadne Conill <ariadne@dereferenced.org>
Sat, 5 Oct 2019 20:11:43 +0000 (20:11 +0000)
committerAriadne Conill <ariadne@dereferenced.org>
Sat, 19 Oct 2019 23:21:37 +0000 (23:21 +0000)
lib/pleroma/user.ex
test/user_test.exs

index ec705b8f6ca4c5702b1461f01a2fd0f7fd6639cd..2bbfaa55b030e977b577b5052b774c94ee46f729 100644 (file)
@@ -88,6 +88,9 @@ defmodule Pleroma.User do
   def superuser?(%User{local: true, info: %User.Info{is_moderator: true}}), do: true
   def superuser?(_), do: false
 
+  def invisible?(%User{info: %User.Info{invisible: true}}), do: true
+  def invisible?(_), do: false
+
   def avatar_url(user, options \\ []) do
     case user.avatar do
       %{"url" => [%{"href" => href} | _]} -> href
index ad050b7da019cc77e7248cdad4d1a4090dd86d7e..05bdb9a61d0ee989c8351ebb829f9e8ce455a1c6 100644 (file)
@@ -1232,6 +1232,20 @@ defmodule Pleroma.UserTest do
     end
   end
 
+  describe "invisible?/1" do
+    test "returns true for an invisible user" do
+      user = insert(:user, local: true, info: %{invisible: true})
+
+      assert User.invisible?(user)
+    end
+
+    test "returns false for a non-invisible user" do
+      user = insert(:user, local: true)
+
+      refute User.invisible?(user)
+    end
+  end
+
   describe "visible_for?/2" do
     test "returns true when the account is itself" do
       user = insert(:user, local: true)