mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-10-31 22:04:07 +00:00
c4439c630f
grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;'
25 lines
832 B
Elixir
25 lines
832 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.Mailer.SubscriptionController do
|
|
use Pleroma.Web, :controller
|
|
|
|
alias Pleroma.JWT
|
|
alias Pleroma.Repo
|
|
alias Pleroma.User
|
|
|
|
def unsubscribe(conn, %{"token" => encoded_token}) do
|
|
with {:ok, token} <- Base.decode64(encoded_token),
|
|
{:ok, claims} <- JWT.verify_and_validate(token),
|
|
%{"act" => %{"unsubscribe" => type}, "sub" => uid} <- claims,
|
|
%User{} = user <- Repo.get(User, uid),
|
|
{:ok, _user} <- User.switch_email_notifications(user, type, false) do
|
|
render(conn, "unsubscribe_success.html", email: user.email)
|
|
else
|
|
_err ->
|
|
render(conn, "unsubscribe_failure.html")
|
|
end
|
|
end
|
|
end
|