forked from potsda.mn/mobilizon
CAS Auth Fixes
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
d7887ccb83
commit
1299b3baf1
|
@ -140,4 +140,5 @@ export const SELECTED_PROVIDERS: { [key: string]: string } = {
|
|||
google: "Google",
|
||||
keycloak: "Keycloak",
|
||||
ldap: "LDAP",
|
||||
cas: "CAS",
|
||||
};
|
||||
|
|
|
@ -4,6 +4,7 @@ defmodule Mobilizon.Web.AuthController do
|
|||
alias Mobilizon.Service.Auth.Authenticator
|
||||
alias Mobilizon.Users
|
||||
alias Mobilizon.Users.User
|
||||
import Mobilizon.Service.Guards, only: [is_valid_string: 1]
|
||||
require Logger
|
||||
plug(:put_layout, false)
|
||||
|
||||
|
@ -106,7 +107,11 @@ defmodule Mobilizon.Web.AuthController do
|
|||
defp email_from_ueberauth(%Ueberauth.Auth{
|
||||
extra: %Ueberauth.Auth.Extra{raw_info: %{user: %{"email" => email}}}
|
||||
})
|
||||
when not is_nil(email) and email != "",
|
||||
when is_valid_string(email),
|
||||
do: email
|
||||
|
||||
defp email_from_ueberauth(%Ueberauth.Auth{info: %Ueberauth.Auth.Info{email: email}})
|
||||
when is_valid_string(email),
|
||||
do: email
|
||||
|
||||
defp email_from_ueberauth(_), do: nil
|
||||
|
|
Loading…
Reference in a new issue