summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/mailer/subscription_controller.ex
blob: f2fc8fbc8526b834cb1d83828d91656a2a227fae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 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