pleroma/lib/pleroma/user.ex

30 lines
629 B
Elixir
Raw Normal View History

2017-03-20 21:28:31 +01:00
defmodule Pleroma.User do
use Ecto.Schema
2017-03-21 17:53:20 +01:00
alias Pleroma.User
2017-03-20 21:28:31 +01:00
schema "users" do
field :bio, :string
field :email, :string
field :name, :string
field :nickname, :string
field :password_hash, :string
2017-03-21 17:53:20 +01:00
field :following, { :array, :string }, default: []
field :ap_id, :string
2017-03-20 21:28:31 +01:00
timestamps()
end
2017-03-21 17:53:20 +01:00
def ap_id(%User{nickname: nickname}) do
host =
Application.get_env(:pleroma, Pleroma.Web.Endpoint)
|> Keyword.fetch!(:url)
|> Keyword.fetch!(:host)
"https://#{host}/users/#{nickname}"
end
def ap_followers(%User{} = user) do
"#{ap_id(user)}/followers"
end
2017-03-20 21:28:31 +01:00
end