akkoma/lib/pleroma/user.ex

69 lines
1.7 KiB
Elixir
Raw Normal View History

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
def following?(%User{} = follower, %User{} = followed) do
Enum.member?(follower.following, User.ap_followers(followed))
end
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