blob: a29d16972e5e3e17495492878e710b5d694d4681 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
defmodule Chessh.Auth.KeyAuthenticator do
alias Chessh.{Key, Repo}
import Ecto.Query
def authenticate(username, public_key) do
!!Repo.one(
from(k in Key,
join: p in assoc(k, :player),
where: k.key == ^Key.encode_key(public_key),
where: p.username == ^String.Chars.to_string(username)
)
)
end
def authenticate(username, public_key, _opts), do: authenticate(username, public_key)
end
|