2017-03-20 20:28:31 +00:00
|
|
|
defmodule Pleroma.User do
|
|
|
|
use Ecto.Schema
|
2017-05-05 09:46:59 +00:00
|
|
|
|
2017-04-27 13:18:50 +00:00
|
|
|
import Ecto.{Changeset, Query}
|
2017-09-11 14:15:28 +00:00
|
|
|
alias Pleroma.{Repo, User, Object, Web, Activity, Notification}
|
2017-04-27 13:18:50 +00:00
|
|
|
alias Comeonin.Pbkdf2
|
2017-05-06 12:09:39 +00:00
|
|
|
alias Pleroma.Web.{OStatus, Websub}
|
2017-04-21 16:54:21 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2017-05-16 13:31:11 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
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-04-27 13:18:50 +00:00
|
|
|
field :following, {:array, :string}, default: []
|
2017-03-21 16:53:20 +00:00
|
|
|
field :ap_id, :string
|
2017-04-16 13:28:28 +00:00
|
|
|
field :avatar, :map
|
2017-04-24 06:48:52 +00:00
|
|
|
field :local, :boolean, default: true
|
2017-04-30 13:00:04 +00:00
|
|
|
field :info, :map, default: %{}
|
2017-07-19 16:49:25 +00:00
|
|
|
field :follower_address, :string
|
2017-09-11 14:15:28 +00:00
|
|
|
has_many :notifications, Notification
|
2017-03-20 20:28:31 +00:00
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
2017-03-21 16:53:20 +00:00
|
|
|
|
2017-04-17 12:12:36 +00:00
|
|
|
def avatar_url(user) do
|
|
|
|
case user.avatar do
|
|
|
|
%{"url" => [%{"href" => href} | _]} -> href
|
|
|
|
_ -> "https://placehold.it/48x48"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-16 11:44:08 +00:00
|
|
|
def banner_url(user) do
|
|
|
|
case user.info["banner"] do
|
|
|
|
%{"url" => [%{"href" => href} | _]} -> href
|
|
|
|
_ -> nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-21 16:53:20 +00:00
|
|
|
def ap_id(%User{nickname: nickname}) do
|
2017-04-27 13:18:50 +00:00
|
|
|
"#{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-07-02 13:01:59 +00:00
|
|
|
def info_changeset(struct, params \\ %{}) do
|
|
|
|
struct
|
|
|
|
|> cast(params, [:info])
|
|
|
|
|> validate_required([:info])
|
|
|
|
end
|
|
|
|
|
2017-04-20 22:51:09 +00:00
|
|
|
def user_info(%User{} = user) do
|
|
|
|
%{
|
|
|
|
following_count: length(user.following),
|
2017-07-22 15:42:15 +00:00
|
|
|
note_count: user.info["note_count"] || 0,
|
|
|
|
follower_count: user.info["follower_count"] || 0
|
2017-04-20 22:51:09 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2017-05-09 16:11:51 +00:00
|
|
|
@email_regex ~r/^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/
|
|
|
|
def remote_user_creation(params) do
|
2017-07-19 16:49:25 +00:00
|
|
|
changes = %User{}
|
2017-05-10 08:16:20 +00:00
|
|
|
|> cast(params, [:bio, :name, :ap_id, :nickname, :info, :avatar])
|
|
|
|
|> validate_required([:name, :ap_id, :nickname])
|
2017-05-09 16:11:51 +00:00
|
|
|
|> unique_constraint(:nickname)
|
|
|
|
|> validate_format(:nickname, @email_regex)
|
2017-07-01 00:00:12 +00:00
|
|
|
|> validate_length(:bio, max: 5000)
|
2017-05-09 16:11:51 +00:00
|
|
|
|> validate_length(:name, max: 100)
|
2017-05-10 08:16:20 +00:00
|
|
|
|> put_change(:local, false)
|
2017-07-19 16:49:25 +00:00
|
|
|
if changes.valid? do
|
|
|
|
followers = User.ap_followers(%User{nickname: changes.changes[:nickname]})
|
|
|
|
changes
|
|
|
|
|> put_change(:follower_address, followers)
|
|
|
|
else
|
|
|
|
changes
|
|
|
|
end
|
2017-05-09 16:11:51 +00:00
|
|
|
end
|
|
|
|
|
2017-08-29 13:14:00 +00:00
|
|
|
def update_changeset(struct, params \\ %{}) do
|
|
|
|
changeset = struct
|
|
|
|
|> cast(params, [:bio, :name])
|
|
|
|
|> unique_constraint(:nickname)
|
|
|
|
|> validate_format(:nickname, ~r/^[a-zA-Z\d]+$/)
|
|
|
|
|> validate_length(:bio, min: 1, max: 1000)
|
|
|
|
|> validate_length(:name, min: 1, max: 100)
|
|
|
|
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)
|
2017-04-24 12:33:27 +00:00
|
|
|
|> validate_format(:nickname, ~r/^[a-zA-Z\d]+$/)
|
2017-05-09 16:11:51 +00:00
|
|
|
|> validate_format(:email, @email_regex)
|
2017-08-29 13:14:00 +00:00
|
|
|
|> validate_length(:bio, min: 1, max: 1000)
|
|
|
|
|> validate_length(:name, min: 1, max: 100)
|
2017-04-15 14:40:09 +00:00
|
|
|
|
|
|
|
if changeset.valid? do
|
2017-04-27 13:18:50 +00:00
|
|
|
hashed = Pbkdf2.hashpwsalt(changeset.changes[:password])
|
2017-04-15 14:40:09 +00:00
|
|
|
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])
|
2017-07-19 16:49:25 +00:00
|
|
|
|> put_change(:follower_address, followers)
|
2017-04-15 14:40:09 +00:00
|
|
|
else
|
|
|
|
changeset
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-22 17:36:08 +00:00
|
|
|
def follow(%User{} = follower, %User{} = followed) do
|
2017-07-19 16:49:25 +00:00
|
|
|
ap_followers = followed.follower_address
|
2017-04-12 14:34:36 +00:00
|
|
|
if following?(follower, followed) do
|
2017-04-27 13:18:50 +00:00
|
|
|
{:error,
|
|
|
|
"Could not follow user: #{followed.nickname} is already on your list."}
|
2017-04-12 14:34:36 +00:00
|
|
|
else
|
2017-05-10 16:43:14 +00:00
|
|
|
if !followed.local && follower.local do
|
2017-05-06 12:09:39 +00:00
|
|
|
Websub.subscribe(follower, followed)
|
|
|
|
end
|
|
|
|
|
2017-04-12 14:34:36 +00:00
|
|
|
following = [ap_followers | follower.following]
|
|
|
|
|> Enum.uniq
|
2017-03-22 17:36:08 +00:00
|
|
|
|
2017-07-22 15:42:15 +00:00
|
|
|
follower = follower
|
2017-04-12 14:34:36 +00:00
|
|
|
|> follow_changeset(%{following: following})
|
|
|
|
|> Repo.update
|
2017-07-22 15:42:15 +00:00
|
|
|
|
|
|
|
{:ok, followed} = update_follower_count(followed)
|
|
|
|
|
|
|
|
follower
|
2017-04-12 14:34:36 +00:00
|
|
|
end
|
2017-03-22 17:36:08 +00:00
|
|
|
end
|
2017-03-23 12:13:09 +00:00
|
|
|
|
|
|
|
def unfollow(%User{} = follower, %User{} = followed) do
|
2017-07-19 16:49:25 +00:00
|
|
|
ap_followers = followed.follower_address
|
2017-04-12 14:34:36 +00:00
|
|
|
if following?(follower, followed) do
|
|
|
|
following = follower.following
|
|
|
|
|> List.delete(ap_followers)
|
2017-03-23 12:13:09 +00:00
|
|
|
|
2017-04-21 16:54:21 +00:00
|
|
|
{ :ok, follower } = follower
|
2017-04-12 14:34:36 +00:00
|
|
|
|> follow_changeset(%{following: following})
|
|
|
|
|> Repo.update
|
2017-07-22 15:42:15 +00:00
|
|
|
|
|
|
|
{:ok, followed} = update_follower_count(followed)
|
|
|
|
|
|
|
|
{:ok, follower, Utils.fetch_latest_follow(follower, followed)}
|
2017-04-12 14:34:36 +00:00
|
|
|
else
|
2017-04-27 13:18:50 +00:00
|
|
|
{:error, "Not subscribed!"}
|
2017-04-12 14:34:36 +00:00
|
|
|
end
|
2017-03-23 12:13:09 +00:00
|
|
|
end
|
2017-03-23 14:51:34 +00:00
|
|
|
|
|
|
|
def following?(%User{} = follower, %User{} = followed) do
|
2017-07-19 16:49:25 +00:00
|
|
|
Enum.member?(follower.following, followed.follower_address)
|
2017-03-23 14:51:34 +00:00
|
|
|
end
|
2017-04-14 15:13:51 +00:00
|
|
|
|
2017-05-11 15:59:11 +00:00
|
|
|
def get_by_ap_id(ap_id) do
|
|
|
|
Repo.get_by(User, ap_id: ap_id)
|
|
|
|
end
|
|
|
|
|
2017-04-14 15:13:51 +00:00
|
|
|
def get_cached_by_ap_id(ap_id) do
|
2017-04-17 09:36:17 +00:00
|
|
|
key = "ap_id:#{ap_id}"
|
2017-05-11 15:59:11 +00:00
|
|
|
Cachex.get!(:user_cache, key, fallback: fn(_) -> get_by_ap_id(ap_id) end)
|
2017-04-14 15:13:51 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_cached_by_nickname(nickname) do
|
2017-04-17 09:36:17 +00:00
|
|
|
key = "nickname:#{nickname}"
|
2017-05-01 11:14:58 +00:00
|
|
|
Cachex.get!(:user_cache, key, fallback: fn(_) -> get_or_fetch_by_nickname(nickname) end)
|
2017-04-14 15:13:51 +00:00
|
|
|
end
|
2017-04-30 08:04:54 +00:00
|
|
|
|
2017-04-30 13:06:22 +00:00
|
|
|
def get_by_nickname(nickname) do
|
2017-04-30 13:05:16 +00:00
|
|
|
Repo.get_by(User, nickname: nickname)
|
|
|
|
end
|
|
|
|
|
2017-04-30 08:04:54 +00:00
|
|
|
def get_cached_user_info(user) do
|
|
|
|
key = "user_info:#{user.id}"
|
|
|
|
Cachex.get!(:user_cache, key, fallback: fn(_) -> user_info(user) end)
|
|
|
|
end
|
2017-04-30 16:48:48 +00:00
|
|
|
|
|
|
|
def get_or_fetch_by_nickname(nickname) do
|
|
|
|
with %User{} = user <- get_by_nickname(nickname) do
|
|
|
|
user
|
|
|
|
else _e ->
|
2017-05-01 11:14:58 +00:00
|
|
|
with [nick, domain] <- String.split(nickname, "@"),
|
|
|
|
{:ok, user} <- OStatus.make_user(nickname) do
|
2017-04-30 16:48:48 +00:00
|
|
|
user
|
|
|
|
else _e -> nil
|
|
|
|
end
|
|
|
|
end
|
2017-04-14 15:13:51 +00:00
|
|
|
end
|
2017-07-20 17:37:41 +00:00
|
|
|
|
|
|
|
# TODO: these queries could be more efficient if the type in postgresql wasn't map, but array.
|
|
|
|
def get_followers(%User{id: id, follower_address: follower_address}) do
|
|
|
|
q = from u in User,
|
|
|
|
where: fragment("? @> ?", u.following, ^follower_address ),
|
|
|
|
where: u.id != ^id
|
|
|
|
|
|
|
|
{:ok, Repo.all(q)}
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_friends(%User{id: id, following: following}) do
|
|
|
|
q = from u in User,
|
|
|
|
where: u.follower_address in ^following,
|
|
|
|
where: u.id != ^id
|
|
|
|
|
|
|
|
{:ok, Repo.all(q)}
|
|
|
|
end
|
2017-07-22 15:42:15 +00:00
|
|
|
|
|
|
|
def update_note_count(%User{} = user) do
|
|
|
|
note_count_query = from a in Object,
|
|
|
|
where: fragment("? @> ?", a.data, ^%{actor: user.ap_id, type: "Note"}),
|
|
|
|
select: count(a.id)
|
|
|
|
|
|
|
|
note_count = Repo.one(note_count_query)
|
|
|
|
|
|
|
|
new_info = Map.put(user.info, "note_count", note_count)
|
|
|
|
|
|
|
|
cs = info_changeset(user, %{info: new_info})
|
|
|
|
|
|
|
|
Repo.update(cs)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_follower_count(%User{} = user) do
|
|
|
|
follower_count_query = from u in User,
|
|
|
|
where: fragment("? @> ?", u.following, ^user.follower_address),
|
|
|
|
select: count(u.id)
|
|
|
|
|
|
|
|
follower_count = Repo.one(follower_count_query)
|
|
|
|
|
|
|
|
new_info = Map.put(user.info, "follower_count", follower_count)
|
|
|
|
|
|
|
|
cs = info_changeset(user, %{info: new_info})
|
|
|
|
|
|
|
|
Repo.update(cs)
|
|
|
|
end
|
2017-09-11 14:15:28 +00:00
|
|
|
|
|
|
|
def get_notified_from_activity(%Activity{data: %{"to" => to}} = activity) do
|
|
|
|
query = from u in User,
|
|
|
|
where: u.ap_id in ^to,
|
|
|
|
where: u.local == true
|
|
|
|
|
|
|
|
Repo.all(query)
|
|
|
|
end
|
2017-03-20 20:28:31 +00:00
|
|
|
end
|