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
98795172
Commit
98795172
authored
6 years ago
by
kaniini
Browse files
Options
Downloads
Patches
Plain Diff
ostatus controller: respond with AS2 objects instead of activities to notice URIs
parent
d73c7cc0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/pleroma/web/ostatus/ostatus_controller.ex
+14
-3
14 additions, 3 deletions
lib/pleroma/web/ostatus/ostatus_controller.ex
test/web/ostatus/ostatus_controller_test.exs
+27
-0
27 additions, 0 deletions
test/web/ostatus/ostatus_controller_test.exs
with
41 additions
and
3 deletions
lib/pleroma/web/ostatus/ostatus_controller.ex
+
14
−
3
View file @
98795172
defmodule
Pleroma
.
Web
.
OStatus
.
OStatusController
do
use
Pleroma
.
Web
,
:controller
alias
Pleroma
.
{
User
,
Activity
}
alias
Pleroma
.
{
User
,
Activity
,
Object
}
alias
Pleroma
.
Web
.
OStatus
.
{
FeedRepresenter
,
ActivityRepresenter
}
alias
Pleroma
.
Repo
alias
Pleroma
.
Web
.
{
OStatus
,
Federator
}
...
...
@@ -153,10 +153,21 @@ defmodule Pleroma.Web.OStatus.OStatusController do
end
end
defp
represent_activity
(
conn
,
"activity+json"
,
activity
,
user
)
do
defp
represent_activity
(
conn
,
"activity+json"
,
%
Activity
{
data:
%{
"type"
=>
"Create"
}}
=
activity
,
user
)
do
object
=
Object
.
normalize
(
activity
.
data
[
"object"
])
conn
|>
put_resp_header
(
"content-type"
,
"application/activity+json"
)
|>
json
(
ObjectView
.
render
(
"object.json"
,
%{
object:
activity
}))
|>
json
(
ObjectView
.
render
(
"object.json"
,
%{
object:
object
}))
end
defp
represent_activity
(
conn
,
"activity+json"
,
_
,
_
)
do
{
:error
,
:not_found
}
end
defp
represent_activity
(
conn
,
_
,
activity
,
user
)
do
...
...
This diff is collapsed.
Click to expand it.
test/web/ostatus/ostatus_controller_test.exs
+
27
−
0
View file @
98795172
...
...
@@ -2,6 +2,7 @@ defmodule Pleroma.Web.OStatus.OStatusControllerTest do
use
Pleroma
.
Web
.
ConnCase
import
Pleroma
.
Factory
alias
Pleroma
.
{
User
,
Repo
}
alias
Pleroma
.
Web
.
CommonAPI
alias
Pleroma
.
Web
.
OStatus
.
ActivityRepresenter
test
"decodes a salmon"
,
%{
conn:
conn
}
do
...
...
@@ -167,6 +168,32 @@ defmodule Pleroma.Web.OStatus.OStatusControllerTest do
assert
json_response
(
conn
,
200
)
end
test
"only gets a notice in AS2 format for Create messages"
,
%{
conn:
conn
}
do
note_activity
=
insert
(
:note_activity
)
url
=
"/notice/
#{
note_activity
.
id
}
"
conn
=
conn
|>
put_req_header
(
"accept"
,
"application/activity+json"
)
|>
get
(
url
)
assert
json_response
(
conn
,
200
)
user
=
insert
(
:user
)
{
:ok
,
like_activity
,
_
}
=
CommonAPI
.
favorite
(
note_activity
.
id
,
user
)
url
=
"/notice/
#{
like_activity
.
id
}
"
assert
like_activity
.
data
[
"type"
]
==
"Like"
conn
=
build_conn
()
|>
put_req_header
(
"accept"
,
"application/activity+json"
)
|>
get
(
url
)
assert
response
(
conn
,
404
)
end
test
"gets an activity in AS2 format"
,
%{
conn:
conn
}
do
note_activity
=
insert
(
:note_activity
)
[
_
,
uuid
]
=
hd
(
Regex
.
scan
(
~r/.+\/
([\
w
-
]
+
)
$
/
,
note_activity
.
data
[
"id"
]))
...
...
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