pleroma/lib/pleroma/workers/mute_expire_worker.ex

24 lines
718 B
Elixir
Raw Normal View History

2020-09-08 12:26:44 +02:00
# Pleroma: A lightweight social networking server
2022-02-26 07:11:42 +01:00
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
2020-09-08 12:26:44 +02:00
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Workers.MuteExpireWorker do
use Pleroma.Workers.WorkerHelper, queue: "mute_expire"
@impl Oban.Worker
2020-09-08 14:13:50 +02:00
def perform(%Job{args: %{"op" => "unmute_user", "muter_id" => muter_id, "mutee_id" => mutee_id}}) do
Pleroma.User.unmute(muter_id, mutee_id)
2020-09-08 12:26:44 +02:00
:ok
end
2020-09-08 14:13:50 +02:00
def perform(%Job{
args: %{"op" => "unmute_conversation", "user_id" => user_id, "activity_id" => activity_id}
}) do
Pleroma.Web.CommonAPI.remove_mute(user_id, activity_id)
2020-09-08 12:26:44 +02:00
:ok
end
2022-11-11 19:42:29 +01:00
@impl Oban.Worker
def timeout(_job), do: :timer.seconds(5)
2020-09-08 12:26:44 +02:00
end