diff options
| author | lain <lain@soykaf.club> | 2018-09-05 22:30:14 +0200 | 
|---|---|---|
| committer | lain <lain@soykaf.club> | 2018-09-05 22:30:14 +0200 | 
| commit | 44b094908c28b588438b4bf31c0a4751be47f48d (patch) | |
| tree | f645d83485a5d6427a2dfe64cdca6ce53797f8c3 /lib | |
| parent | c0e067c74e46c98657cb0e403debcbcb0a362df8 (diff) | |
| download | pleroma-44b094908c28b588438b4bf31c0a4751be47f48d.tar.gz pleroma-44b094908c28b588438b4bf31c0a4751be47f48d.zip | |
Update legacy passwords automatically.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/pleroma/plugs/legacy_authentication_plug.ex | 10 | 
1 files changed, 7 insertions, 3 deletions
| diff --git a/lib/pleroma/plugs/legacy_authentication_plug.ex b/lib/pleroma/plugs/legacy_authentication_plug.ex index 48c0aba88..d22c1a647 100644 --- a/lib/pleroma/plugs/legacy_authentication_plug.ex +++ b/lib/pleroma/plugs/legacy_authentication_plug.ex @@ -17,11 +17,15 @@ defmodule Pleroma.Plugs.LegacyAuthenticationPlug do          } = conn,          _        ) do -    if :crypt.crypt(password, password_hash) == password_hash do +    with ^password_hash <- :crypt.crypt(password, password_hash), +         {:ok, user} <- +           User.reset_password(auth_user, %{password: password, password_confirmation: password}) do        conn -      |> assign(:user, auth_user) +      |> assign(:auth_user, user) +      |> assign(:user, user)      else -      conn +      _ -> +        conn      end    end | 
