2019-07-10 07:13:23 +02:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 23:44:49 +01:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-07-10 07:13:23 +02:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-03-31 18:01:16 +02:00
|
|
|
defmodule Pleroma.BBS.Authenticator do
|
|
|
|
use Sshd.PasswordAuthenticator
|
|
|
|
alias Comeonin.Pbkdf2
|
|
|
|
alias Pleroma.User
|
|
|
|
|
|
|
|
def authenticate(username, password) do
|
|
|
|
username = to_string(username)
|
|
|
|
password = to_string(password)
|
|
|
|
|
|
|
|
with %User{} = user <- User.get_by_nickname(username) do
|
|
|
|
Pbkdf2.checkpw(password, user.password_hash)
|
|
|
|
else
|
|
|
|
_e -> false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|