Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F21908433
publisher.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
815 B
Referenced Files
None
Subscribers
None
publisher.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Workers.Publisher
do
alias
Pleroma.Activity
alias
Pleroma.Web.Federator
# Note: `max_attempts` is intended to be overridden in `new/1` call
use
Oban.Worker
,
queue
:
"federator_outgoing"
,
max_attempts
:
Pleroma.Config
.
get
([
:workers
,
:retries
,
:compile_time_default
])
@impl
Oban.Worker
def
perform
(%{
"op"
=>
"publish"
,
"activity_id"
=>
activity_id
})
do
activity
=
Activity
.
get_by_id
(
activity_id
)
Federator
.
perform
(
:publish
,
activity
)
end
def
perform
(%{
"op"
=>
"publish_one"
,
"module"
=>
module_name
,
"params"
=>
params
})
do
Federator
.
perform
(
:publish_one
,
String
.
to_atom
(
module_name
),
params
)
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Sun, Dec 28, 1:43 AM (13 m, 3 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
818300
Default Alt Text
publisher.ex (815 B)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment