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