Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pleroma
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jeff
pleroma
Commits
f6be980f
Commit
f6be980f
authored
6 years ago
by
kaniini
Browse files
Options
Downloads
Patches
Plain Diff
activitypub: object view: avoid leaking private details
parent
b471344b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/pleroma/web/activity_pub/views/object_view.ex
+12
-1
12 additions, 1 deletion
lib/pleroma/web/activity_pub/views/object_view.ex
test/web/activity_pub/views/object_view_test.exs
+40
-0
40 additions, 0 deletions
test/web/activity_pub/views/object_view_test.exs
with
52 additions
and
1 deletion
lib/pleroma/web/activity_pub/views/object_view.ex
+
12
−
1
View file @
f6be980f
...
...
@@ -10,7 +10,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectView do
Map
.
merge
(
base
,
additional
)
end
def
render
(
"object.json"
,
%{
object:
%
Activity
{}
=
activity
})
do
def
render
(
"object.json"
,
%{
object:
%
Activity
{
data:
%{
"type"
=>
"Create"
}
}
=
activity
})
do
base
=
Pleroma
.
Web
.
ActivityPub
.
Utils
.
make_json_ld_header
()
object
=
Object
.
normalize
(
activity
.
data
[
"object"
])
...
...
@@ -20,4 +20,15 @@ defmodule Pleroma.Web.ActivityPub.ObjectView do
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
.
data
[
"object"
])
additional
=
Transmogrifier
.
prepare_object
(
activity
.
data
)
|>
Map
.
put
(
"object"
,
object
.
data
[
"id"
])
Map
.
merge
(
base
,
additional
)
end
end
This diff is collapsed.
Click to expand it.
test/web/activity_pub/views/object_view_test.exs
+
40
−
0
View file @
f6be980f
...
...
@@ -2,6 +2,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectViewTest do
use
Pleroma
.
DataCase
import
Pleroma
.
Factory
alias
Pleroma
.
Web
.
CommonAPI
alias
Pleroma
.
Web
.
ActivityPub
.
ObjectView
test
"renders a note object"
do
...
...
@@ -15,4 +16,43 @@ defmodule Pleroma.Web.ActivityPub.ObjectViewTest do
assert
result
[
"type"
]
==
"Note"
assert
result
[
"@context"
]
end
test
"renders a note activity"
do
note
=
insert
(
:note_activity
)
result
=
ObjectView
.
render
(
"object.json"
,
%{
object:
note
})
assert
result
[
"id"
]
==
note
.
data
[
"id"
]
assert
result
[
"to"
]
==
note
.
data
[
"to"
]
assert
result
[
"object"
][
"type"
]
==
"Note"
assert
result
[
"object"
][
"content"
]
==
note
.
data
[
"object"
][
"content"
]
assert
result
[
"type"
]
==
"Create"
assert
result
[
"@context"
]
end
test
"renders a like activity"
do
note
=
insert
(
:note_activity
)
user
=
insert
(
:user
)
{
:ok
,
like_activity
,
_
}
=
CommonAPI
.
favorite
(
note
.
id
,
user
)
result
=
ObjectView
.
render
(
"object.json"
,
%{
object:
like_activity
})
assert
result
[
"id"
]
==
like_activity
.
data
[
"id"
]
assert
result
[
"object"
]
==
note
.
data
[
"object"
][
"id"
]
assert
result
[
"type"
]
==
"Like"
end
test
"renders an announce activity"
do
note
=
insert
(
:note_activity
)
user
=
insert
(
:user
)
{
:ok
,
announce_activity
,
_
}
=
CommonAPI
.
repeat
(
note
.
id
,
user
)
result
=
ObjectView
.
render
(
"object.json"
,
%{
object:
announce_activity
})
assert
result
[
"id"
]
==
announce_activity
.
data
[
"id"
]
assert
result
[
"object"
]
==
note
.
data
[
"object"
][
"id"
]
assert
result
[
"type"
]
==
"Announce"
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment