blob: e90f101363b6230187535f3fcebc40b8334341ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
defmodule Chessh.Auth.KeyAuthenticator do
alias Chessh.{Key, Repo}
use Sshd.PublicKeyAuthenticator
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
|