2017-03-20 20:28:31 +00:00
|
|
|
defmodule Pleroma.User do
|
|
|
|
use Ecto.Schema
|
2017-03-22 17:36:08 +00:00
|
|
|
import Ecto.Changeset
|
|
|
|
alias Pleroma.{Repo, User}
|
2017-03-20 20:28:31 +00:00
|
|
|
|
|
|
|
schema "users" do
|
|
|
|
field :bio, :string
|
|
|
|
field :email, :string
|
|
|
|
field :name, :string
|
|
|
|
field :nickname, :string
|
|
|
|
field :password_hash, :string
|
2017-03-21 16:53:20 +00:00
|
|
|
field :following, { :array, :string }, default: []
|
|
|
|
field :ap_id, :string
|
2017-03-20 20:28:31 +00:00
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
2017-03-21 16:53:20 +00:00
|
|
|
|
|
|
|
def ap_id(%User{nickname: nickname}) do
|
2017-04-03 16:27:47 +00:00
|
|
|
"#{Pleroma.Web.base_url}/users/#{nickname}"
|
2017-03-21 16:53:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def ap_followers(%User{} = user) do
|
|
|
|
"#{ap_id(user)}/followers"
|
|
|
|
end
|
2017-03-22 17:36:08 +00:00
|
|
|
|
|
|
|
def follow_changeset(struct, params \\ %{}) do
|
|
|
|
struct
|
|
|
|
|> cast(params, [:following])
|
|
|
|
|> validate_required([:following])
|
|
|
|
end
|
|
|
|
|
|
|
|
def follow(%User{} = follower, %User{} = followed) do
|
|
|
|
ap_followers = User.ap_followers(followed)
|
|
|
|
following = [ap_followers | follower.following]
|
|
|
|
|> Enum.uniq
|
|
|
|
|
|
|
|
follower
|
|
|
|
|> follow_changeset(%{following: following})
|
|
|
|
|> Repo.update
|
|
|
|
end
|
2017-03-23 12:13:09 +00:00
|
|
|
|
|
|
|
def unfollow(%User{} = follower, %User{} = followed) do
|
|
|
|
ap_followers = User.ap_followers(followed)
|
|
|
|
following = follower.following
|
|
|
|
|> List.delete(ap_followers)
|
|
|
|
|
|
|
|
follower
|
|
|
|
|> follow_changeset(%{following: following})
|
|
|
|
|> Repo.update
|
|
|
|
end
|
2017-03-23 14:51:34 +00:00
|
|
|
|
|
|
|
def following?(%User{} = follower, %User{} = followed) do
|
|
|
|
Enum.member?(follower.following, User.ap_followers(followed))
|
|
|
|
end
|
2017-03-20 20:28:31 +00:00
|
|
|
end
|