2019-07-09 23:13:23 -06:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-12 23:49:20 -07:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-07-09 23:13:23 -06:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-03-31 10:01:16 -06:00
|
|
|
defmodule Pleroma.BBS.Authenticator do
|
|
|
|
use Sshd.PasswordAuthenticator
|
|
|
|
alias Pleroma.User
|
2020-06-24 04:07:47 -06:00
|
|
|
alias Pleroma.Web.Plugs.AuthenticationPlug
|
2019-03-31 10:01:16 -06:00
|
|
|
|
|
|
|
def authenticate(username, password) do
|
|
|
|
username = to_string(username)
|
|
|
|
password = to_string(password)
|
|
|
|
|
|
|
|
with %User{} = user <- User.get_by_nickname(username) do
|
2020-05-14 07:42:27 -06:00
|
|
|
AuthenticationPlug.checkpw(password, user.password_hash)
|
2019-03-31 10:01:16 -06:00
|
|
|
else
|
|
|
|
_e -> false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|