X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fweb%2Fpush%2Fpush.ex;h=4973b529ceec978a4fcd489a20155c00e100ca71;hb=a90ea8ba1562818b025f677ffeea35f7ca08ddf2;hp=fb6605f307c4eb08211c29434eeee70aff482cc4;hpb=658edb166fc91e77399ff6022a48076db5404fb1;p=akkoma diff --git a/lib/pleroma/web/push/push.ex b/lib/pleroma/web/push/push.ex index fb6605f30..4973b529c 100644 --- a/lib/pleroma/web/push/push.ex +++ b/lib/pleroma/web/push/push.ex @@ -1,116 +1,42 @@ -defmodule Pleroma.Web.Push do - use GenServer +# Pleroma: A lightweight social networking server +# Copyright © 2017-2019 Pleroma Authors +# SPDX-License-Identifier: AGPL-3.0-only - alias Pleroma.{Repo, User} - alias Pleroma.Web.Push.Subscription +defmodule Pleroma.Web.Push do + alias Pleroma.Repo + alias Pleroma.Workers.WebPusherWorker require Logger - import Ecto.Query - - @types ["Create", "Follow", "Announce", "Like"] - @gcm_api_key nil + import Pleroma.Workers.WorkerHelper, only: [worker_args: 1] - def start_link() do - GenServer.start_link(__MODULE__, :ok, name: __MODULE__) - end - - def init(:ok) do - case Application.get_env(:web_push_encryption, :vapid_details) do - nil -> - Logger.warn( - "VAPID key pair is not found. Please, add VAPID configuration to config. Run `mix web_push.gen.keypair` mix task to create a key pair" - ) + def init do + unless enabled() do + Logger.warn(""" + VAPID key pair is not found. If you wish to enabled web push, please run - :ignore + mix web_push.gen.keypair - _ -> - {:ok, %{}} + and add the resulting output to your configuration file. + """) end end - def send(notification) do - if Application.get_env(:web_push_encryption, :vapid_details) do - GenServer.cast(Pleroma.Web.Push, {:send, notification}) - end + def vapid_config do + Application.get_env(:web_push_encryption, :vapid_details, []) end - def handle_cast( - {:send, %{activity: %{data: %{"type" => type}}, user_id: user_id} = notification}, - state - ) - when type in @types do - actor = User.get_cached_by_ap_id(notification.activity.data["actor"]) - body = notification |> format(actor) |> Jason.encode!() - - Subscription - |> where(user_id: ^user_id) - |> Repo.all() - |> Enum.each(fn record -> - subscription = %{ - keys: %{ - p256dh: record.key_p256dh, - auth: record.key_auth - }, - endpoint: record.endpoint - } - - case WebPushEncryption.send_web_push(body, subscription, @gcm_api_key) do - {:ok, %{status_code: code}} when 400 <= code and code < 500 -> - Logger.debug("Removing subscription record") - Repo.delete!(record) - :ok - - {:ok, %{status_code: code}} when 200 <= code and code < 300 -> - :ok - - {:ok, %{status_code: code}} -> - Logger.error("Web Push Nonification failed with code: #{code}") - :error - - _ -> - Logger.error("Web Push Nonification failed with unknown error") - :error - end - end) - - {:noreply, state} - end - - def handle_cast({:send, _}, state) do - Logger.warn("Unknown notification type") - {:noreply, state} - end - - def format(%{activity: %{data: %{"type" => "Create"}}}, actor) do - %{ - title: "New Mention", - body: "@#{actor.nickname} has mentiond you", - icon: User.avatar_url(actor) - } - end - - def format(%{activity: %{data: %{"type" => "Follow"}}}, actor) do - %{ - title: "New Follower", - body: "@#{actor.nickname} has followed you", - icon: User.avatar_url(actor) - } - end - - def format(%{activity: %{data: %{"type" => "Announce"}}}, actor) do - %{ - title: "New Repeat", - body: "@#{actor.nickname} has repeated your post", - icon: User.avatar_url(actor) - } + def enabled do + case vapid_config() do + [] -> false + list when is_list(list) -> true + _ -> false + end end - def format(%{activity: %{data: %{"type" => "Like"}}}, actor) do - %{ - title: "New Favorite", - body: "@#{actor.nickname} has favorited your post", - icon: User.avatar_url(actor) - } + def send(notification) do + %{"op" => "web_push", "notification_id" => notification.id} + |> WebPusherWorker.new(worker_args(:web_push)) + |> Repo.insert() end end