2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-09-06 17:06:25 +00:00
|
|
|
defmodule Pleroma.Web.OAuth.Authorization do
|
|
|
|
use Ecto.Schema
|
|
|
|
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Repo
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.OAuth.App
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.OAuth.Authorization
|
2017-09-06 17:06:25 +00:00
|
|
|
|
2019-02-09 15:20:18 +00:00
|
|
|
import Ecto.Changeset
|
|
|
|
import Ecto.Query
|
2017-09-09 10:02:59 +00:00
|
|
|
|
2017-09-06 17:06:25 +00:00
|
|
|
schema "oauth_authorizations" do
|
2018-03-30 13:01:53 +00:00
|
|
|
field(:token, :string)
|
2019-02-13 21:29:29 +00:00
|
|
|
field(:scopes, {:array, :string}, default: [])
|
2018-03-30 13:01:53 +00:00
|
|
|
field(:valid_until, :naive_datetime)
|
|
|
|
field(:used, :boolean, default: false)
|
2019-01-09 15:08:24 +00:00
|
|
|
belongs_to(:user, Pleroma.User, type: Pleroma.FlakeId)
|
2018-05-07 16:11:37 +00:00
|
|
|
belongs_to(:app, App)
|
2017-09-06 17:06:25 +00:00
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
2019-02-13 21:29:29 +00:00
|
|
|
def create_authorization(%App{} = app, %User{} = user, scopes \\ nil) do
|
|
|
|
scopes = scopes || app.scopes
|
2019-02-14 01:05:25 +00:00
|
|
|
token = :crypto.strong_rand_bytes(32) |> Base.url_encode64(padding: false)
|
2017-09-06 17:06:25 +00:00
|
|
|
|
|
|
|
authorization = %Authorization{
|
|
|
|
token: token,
|
|
|
|
used: false,
|
|
|
|
user_id: user.id,
|
|
|
|
app_id: app.id,
|
2019-02-13 21:29:29 +00:00
|
|
|
scopes: scopes,
|
2018-03-30 13:01:53 +00:00
|
|
|
valid_until: NaiveDateTime.add(NaiveDateTime.utc_now(), 60 * 10)
|
2017-09-06 17:06:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Repo.insert(authorization)
|
|
|
|
end
|
2017-09-09 10:02:59 +00:00
|
|
|
|
|
|
|
def use_changeset(%Authorization{} = auth, params) do
|
|
|
|
auth
|
|
|
|
|> cast(params, [:used])
|
|
|
|
|> validate_required([:used])
|
|
|
|
end
|
|
|
|
|
|
|
|
def use_token(%Authorization{used: false, valid_until: valid_until} = auth) do
|
2018-03-30 13:01:53 +00:00
|
|
|
if NaiveDateTime.diff(NaiveDateTime.utc_now(), valid_until) < 0 do
|
2017-09-09 10:02:59 +00:00
|
|
|
Repo.update(use_changeset(auth, %{used: true}))
|
|
|
|
else
|
2018-03-22 11:37:24 +00:00
|
|
|
{:error, "token expired"}
|
2017-09-09 10:02:59 +00:00
|
|
|
end
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-03-22 11:37:24 +00:00
|
|
|
def use_token(%Authorization{used: true}), do: {:error, "already used"}
|
2018-10-13 23:45:11 +00:00
|
|
|
|
|
|
|
def delete_user_authorizations(%User{id: user_id}) do
|
|
|
|
from(
|
|
|
|
a in Pleroma.Web.OAuth.Authorization,
|
|
|
|
where: a.user_id == ^user_id
|
|
|
|
)
|
|
|
|
|> Repo.delete_all()
|
|
|
|
end
|
2017-09-06 17:06:25 +00:00
|
|
|
end
|