User: Don't allow local users in remote changesets
authorlain <lain@soykaf.club>
Wed, 2 Dec 2020 11:18:43 +0000 (12:18 +0100)
committerlain <lain@soykaf.club>
Wed, 2 Dec 2020 11:18:43 +0000 (12:18 +0100)
lib/pleroma/user.ex
test/pleroma/user_test.exs

index bcd5256c8e0d51203e6a00aab2ee974e2c6d1da3..9222b5b2aaa22440d6fbe01831ed46dc43fd7594 100644 (file)
@@ -472,7 +472,20 @@ defmodule Pleroma.User do
     |> validate_format(:nickname, @email_regex)
     |> validate_length(:bio, max: bio_limit)
     |> validate_length(:name, max: name_limit)
+    |> validate_inclusion(:local, [true])
     |> validate_fields(true)
+    |> validate_non_local()
+  end
+
+  defp validate_non_local(cng) do
+    local? = get_field(cng, :local)
+
+    if local? do
+      cng
+      |> add_error(:local, "User is local, can't update with this changeset.")
+    else
+      cng
+    end
   end
 
   def update_changeset(struct, params \\ %{}) do
index c678dadb3075ba0e092156beee902a4037702c66..e01a940cb0b3d9ec4d195468e036f9b0df8da073 100644 (file)
@@ -895,6 +895,13 @@ defmodule Pleroma.UserTest do
         refute cs.valid?
       end)
     end
+
+    test "it is invalid given a local user" do
+      user = insert(:user)
+      cs = User.remote_user_changeset(user, %{name: "tom from myspace"})
+
+      refute cs.valid?
+    end
   end
 
   describe "followers and friends" do