Update user data on fetch if it changed.

This commit is contained in:
Roger Braun 2017-06-24 13:09:46 +02:00
parent ffc9d7708b
commit 6935fc3e01
2 changed files with 13 additions and 3 deletions

View File

@ -192,6 +192,11 @@ def find_or_make_user(uri) do
end
end
def insert_or_update_user(data) do
cs = User.remote_user_creation(data)
Repo.insert(cs, on_conflict: :replace_all, conflict_target: :nickname)
end
def make_user(uri) do
with {:ok, info} <- gather_user_info(uri) do
data = %{
@ -204,9 +209,7 @@ def make_user(uri) do
}
with %User{} = user <- User.get_by_ap_id(data.ap_id) do
{:ok, user}
else _e ->
cs = User.remote_user_creation(data)
Repo.insert(cs)
else _e -> insert_or_update_user(data)
end
end
end

View File

@ -322,4 +322,11 @@ test "it builds a missing status from an html url" do
assert activity.data["object"]["id"] == "tag:shitposter.club,2017-05-05:noticeId=2827873:objectType=comment"
end
end
test "insert or update a user from given data" do
user = insert(:user, %{nickname: "nick@name.de"})
data = %{ ap_id: user.ap_id <> "xxx", name: user.name, nickname: user.nickname }
assert {:ok, %User{}} = OStatus.insert_or_update_user(data)
end
end