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-04-15 14:40:09 +00:00
|
|
|
field :password, :string, virtual: true
|
|
|
|
field :password_confirmation, :string, virtual: true
|
2017-03-21 16:53:20 +00:00
|
|
|
field :following, { :array, :string }, default: []
|
|
|
|
field :ap_id, :string
|
2017-04-16 13:28:28 +00:00
|
|
|
field :avatar, :map
|
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
|
|
|
|
|
2017-04-15 14:40:09 +00:00
|
|
|
def register_changeset(struct, params \\ %{}) do
|
|
|
|
changeset = struct
|
|
|
|
|> cast(params, [:bio, :email, :name, :nickname, :password, :password_confirmation])
|
|
|
|
|> validate_required([:bio, :email, :name, :nickname, :password, :password_confirmation])
|
|
|
|
|> validate_confirmation(:password)
|
|
|
|
|> unique_constraint(:email)
|
|
|
|
|> unique_constraint(:nickname)
|
|
|
|
|
|
|
|
if changeset.valid? do
|
|
|
|
hashed = Comeonin.Pbkdf2.hashpwsalt(changeset.changes[:password])
|
|
|
|
ap_id = User.ap_id(%User{nickname: changeset.changes[:nickname]})
|
|
|
|
followers = User.ap_followers(%User{nickname: changeset.changes[:nickname]})
|
|
|
|
changeset
|
|
|
|
|> put_change(:password_hash, hashed)
|
|
|
|
|> put_change(:ap_id, ap_id)
|
|
|
|
|> put_change(:following, [followers])
|
|
|
|
else
|
|
|
|
changeset
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-22 17:36:08 +00:00
|
|
|
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-04-14 15:13:51 +00:00
|
|
|
|
|
|
|
def get_cached_by_ap_id(ap_id) do
|
|
|
|
ConCache.get_or_store(:users, "ap_id:#{ap_id}", fn() ->
|
|
|
|
# Return false so the cache will store it.
|
|
|
|
Repo.get_by(User, ap_id: ap_id) || false
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_cached_by_nickname(nickname) do
|
|
|
|
ConCache.get_or_store(:users, "nickname:#{nickname}", fn() ->
|
|
|
|
Repo.get_by(User, nickname: nickname) || false
|
|
|
|
end)
|
|
|
|
end
|
2017-03-20 20:28:31 +00:00
|
|
|
end
|