Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F21840764
object_view.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
object_view.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Web.ActivityPub.ObjectView
do
use
Pleroma.Web
,
:view
alias
Pleroma.Activity
alias
Pleroma.Object
alias
Pleroma.Web.ActivityPub.Transmogrifier
def
render
(
"object.json"
,
%{
object
:
%
Object
{}
=
object
})
do
base
=
Pleroma.Web.ActivityPub.Utils
.
make_json_ld_header
()
additional
=
Transmogrifier
.
prepare_object
(
object
.
data
)
Map
.
merge
(
base
,
additional
)
end
def
render
(
"object.json"
,
%{
object
:
%
Activity
{
data
:
%{
"type"
=>
activity_type
}}
=
activity
})
when
activity_type
in
[
"Create"
,
"Listen"
]
do
base
=
Pleroma.Web.ActivityPub.Utils
.
make_json_ld_header
()
object
=
Object
.
normalize
(
activity
,
fetch
:
false
)
additional
=
Transmogrifier
.
prepare_object
(
activity
.
data
)
|>
Map
.
put
(
"object"
,
Transmogrifier
.
prepare_object
(
object
.
data
))
Map
.
merge
(
base
,
additional
)
end
def
render
(
"object.json"
,
%{
object
:
%
Activity
{}
=
activity
})
do
base
=
Pleroma.Web.ActivityPub.Utils
.
make_json_ld_header
()
object
=
Object
.
normalize
(
activity
,
fetch
:
false
)
additional
=
Transmogrifier
.
prepare_object
(
activity
.
data
)
|>
Map
.
put
(
"object"
,
object
.
data
[
"id"
])
Map
.
merge
(
base
,
additional
)
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Sat, Dec 27, 11:49 PM (2 h, 55 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
818365
Default Alt Text
object_view.ex (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment