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
kaniini
pleroma
Commits
94e980d6
Commit
94e980d6
authored
7 years ago
by
lain
Browse files
Options
Downloads
Patches
Plain Diff
Output proper published data in ostatus.
parent
869e5ccf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
TODO.txt
+4
-1
4 additions, 1 deletion
TODO.txt
lib/pleroma/web/ostatus/activity_representer.ex
+10
-20
10 additions, 20 deletions
lib/pleroma/web/ostatus/activity_representer.ex
test/web/ostatus/activity_representer_test.exs
+12
-45
12 additions, 45 deletions
test/web/ostatus/activity_representer_test.exs
with
26 additions
and
66 deletions
TODO.txt
+
4
−
1
View file @
94e980d6
...
...
@@ -5,5 +5,8 @@ Unliking:
WEBSUB:
- Add unsubscription
- Add periodical renewal
OSTATUS:
- Save and output 'updated'
This diff is collapsed.
Click to expand it.
lib/pleroma/web/ostatus/activity_representer.ex
+
10
−
20
View file @
94e980d6
...
...
@@ -28,10 +28,8 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do
def
to_simple_form
(%{
data:
%{
"object"
=>
%{
"type"
=>
"Note"
}}}
=
activity
,
user
,
with_author
)
do
h
=
fn
(
str
)
->
[
to_charlist
(
str
)]
end
updated_at
=
activity
.
updated_at
|>
NaiveDateTime
.
to_iso8601
inserted_at
=
activity
.
inserted_at
|>
NaiveDateTime
.
to_iso8601
updated_at
=
activity
.
data
[
"published"
]
inserted_at
=
activity
.
data
[
"published"
]
attachments
=
Enum
.
map
(
activity
.
data
[
"object"
][
"attachment"
]
||
[],
fn
(
attachment
)
->
url
=
hd
(
attachment
[
"url"
])
...
...
@@ -62,10 +60,8 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do
def
to_simple_form
(%{
data:
%{
"type"
=>
"Like"
}}
=
activity
,
user
,
with_author
)
do
h
=
fn
(
str
)
->
[
to_charlist
(
str
)]
end
updated_at
=
activity
.
updated_at
|>
NaiveDateTime
.
to_iso8601
inserted_at
=
activity
.
inserted_at
|>
NaiveDateTime
.
to_iso8601
updated_at
=
activity
.
data
[
"published"
]
inserted_at
=
activity
.
data
[
"published"
]
in_reply_to
=
get_in_reply_to
(
activity
.
data
)
author
=
if
with_author
,
do
:
[{
:author
,
UserRepresenter
.
to_simple_form
(
user
)}],
else
:
[]
...
...
@@ -92,10 +88,8 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do
def
to_simple_form
(%{
data:
%{
"type"
=>
"Announce"
}}
=
activity
,
user
,
with_author
)
do
h
=
fn
(
str
)
->
[
to_charlist
(
str
)]
end
updated_at
=
activity
.
updated_at
|>
NaiveDateTime
.
to_iso8601
inserted_at
=
activity
.
inserted_at
|>
NaiveDateTime
.
to_iso8601
updated_at
=
activity
.
data
[
"published"
]
inserted_at
=
activity
.
data
[
"published"
]
in_reply_to
=
get_in_reply_to
(
activity
.
data
)
author
=
if
with_author
,
do
:
[{
:author
,
UserRepresenter
.
to_simple_form
(
user
)}],
else
:
[]
...
...
@@ -124,10 +118,8 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do
def
to_simple_form
(%{
data:
%{
"type"
=>
"Follow"
}}
=
activity
,
user
,
with_author
)
do
h
=
fn
(
str
)
->
[
to_charlist
(
str
)]
end
updated_at
=
activity
.
updated_at
|>
NaiveDateTime
.
to_iso8601
inserted_at
=
activity
.
inserted_at
|>
NaiveDateTime
.
to_iso8601
updated_at
=
activity
.
data
[
"published"
]
inserted_at
=
activity
.
data
[
"published"
]
author
=
if
with_author
,
do
:
[{
:author
,
UserRepresenter
.
to_simple_form
(
user
)}],
else
:
[]
...
...
@@ -153,10 +145,8 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do
def
to_simple_form
(%{
data:
%{
"type"
=>
"Undo"
}}
=
activity
,
user
,
with_author
)
do
h
=
fn
(
str
)
->
[
to_charlist
(
str
)]
end
updated_at
=
activity
.
updated_at
|>
NaiveDateTime
.
to_iso8601
inserted_at
=
activity
.
inserted_at
|>
NaiveDateTime
.
to_iso8601
updated_at
=
activity
.
data
[
"published"
]
inserted_at
=
activity
.
data
[
"published"
]
author
=
if
with_author
,
do
:
[{
:author
,
UserRepresenter
.
to_simple_form
(
user
)}],
else
:
[]
follow_activity
=
Activity
.
get_by_ap_id
(
activity
.
data
[
"object"
])
...
...
This diff is collapsed.
Click to expand it.
test/web/ostatus/activity_representer_test.exs
+
12
−
45
View file @
94e980d6
...
...
@@ -9,10 +9,6 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do
test
"a note activity"
do
note_activity
=
insert
(
:note_activity
)
updated_at
=
note_activity
.
updated_at
|>
NaiveDateTime
.
to_iso8601
inserted_at
=
note_activity
.
inserted_at
|>
NaiveDateTime
.
to_iso8601
user
=
User
.
get_cached_by_ap_id
(
note_activity
.
data
[
"actor"
])
...
...
@@ -22,8 +18,8 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do
<id>#{note_activity.data["object"]["id"]}</id>
<title>New note by #{user.nickname}</title>
<content type="html">#{note_activity.data["object"]["content"]}</content>
<published>#{
inser
te
d
_a
t
}</published>
<updated>#{
updated_at
}</updated>
<published>#{
no
te_a
ctivity.data["published"]
}</published>
<updated>#{
note_activity.data["published"]
}</updated>
<ostatus:conversation>#{note_activity.data["context"]}</ostatus:conversation>
<link href="#{note_activity.data["context"]}" rel="ostatus:conversation" />
<link type="application/atom+xml" href="#{note_activity.data["object"]["id"]}" rel="self" />
...
...
@@ -47,11 +43,6 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do
data
=
%{
answer
.
data
|
"object"
=>
object
}
answer
=
%{
answer
|
data:
data
}
updated_at
=
answer
.
updated_at
|>
NaiveDateTime
.
to_iso8601
inserted_at
=
answer
.
inserted_at
|>
NaiveDateTime
.
to_iso8601
user
=
User
.
get_cached_by_ap_id
(
answer
.
data
[
"actor"
])
expected
=
"""
...
...
@@ -60,8 +51,8 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do
<id>#{answer.data["object"]["id"]}</id>
<title>New note by #{user.nickname}</title>
<content type="html">#{answer.data["object"]["content"]}</content>
<published>#{
i
nser
ted_at
}</published>
<updated>#{
updated_at
}</updated>
<published>#{
a
ns
w
er
.data["published"]
}</published>
<updated>#{
answer.data["published"]
}</updated>
<ostatus:conversation>#{answer.data["context"]}</ostatus:conversation>
<link href="#{answer.data["context"]}" rel="ostatus:conversation" />
<link type="application/atom+xml" href="#{answer.data["object"]["id"]}" rel="self" />
...
...
@@ -92,19 +83,14 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do
|>
:xmerl
.
export_simple_content
(
:xmerl_xml
)
|>
to_string
updated_at
=
announce
.
updated_at
|>
NaiveDateTime
.
to_iso8601
inserted_at
=
announce
.
inserted_at
|>
NaiveDateTime
.
to_iso8601
expected
=
"""
<activity:object-type>http://activitystrea.ms/schema/1.0/activity</activity:object-type>
<activity:verb>http://activitystrea.ms/schema/1.0/share</activity:verb>
<id>#{announce.data["id"]}</id>
<title>#{user.nickname} repeated a notice</title>
<content type="html">RT #{note.data["object"]["content"]}</content>
<published>#{
inserted_at
}</published>
<updated>#{
updated_at
}</updated>
<published>#{
announce.data["published"]
}</published>
<updated>#{
announce.data["published"]
}</updated>
<ostatus:conversation>#{announce.data["context"]}</ostatus:conversation>
<link href="#{announce.data["context"]}" rel="ostatus:conversation" />
<link rel="self" type="application/atom+xml" href="#{announce.data["id"]}"/>
...
...
@@ -126,12 +112,6 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do
user
=
insert
(
:user
)
{
:ok
,
like
,
_note
}
=
ActivityPub
.
like
(
user
,
note
)
# TODO: Are these the correct dates?
updated_at
=
like
.
updated_at
|>
NaiveDateTime
.
to_iso8601
inserted_at
=
like
.
inserted_at
|>
NaiveDateTime
.
to_iso8601
tuple
=
ActivityRepresenter
.
to_simple_form
(
like
,
user
)
refute
is_nil
(
tuple
)
...
...
@@ -142,8 +122,8 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do
<id>#{like.data["id"]}</id>
<title>New favorite by #{user.nickname}</title>
<content type="html">#{user.nickname} favorited something</content>
<published>#{
inserted_at
}</published>
<updated>#{
updated_at
}</updated>
<published>#{
like.data["published"]
}</published>
<updated>#{
like.data["published"]
}</updated>
<activity:object>
<activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>
<id>#{note.data["id"]}</id>
...
...
@@ -168,13 +148,6 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do
"to"
=>
[
followed
.
ap_id
]
})
# TODO: Are these the correct dates?
updated_at
=
activity
.
updated_at
|>
NaiveDateTime
.
to_iso8601
inserted_at
=
activity
.
inserted_at
|>
NaiveDateTime
.
to_iso8601
tuple
=
ActivityRepresenter
.
to_simple_form
(
activity
,
follower
)
refute
is_nil
(
tuple
)
...
...
@@ -187,8 +160,8 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do
<id>#{activity.data["id"]}</id>
<title>#{follower.nickname} started following #{activity.data["object"]}</title>
<content type="html"> #{follower.nickname} started following #{activity.data["object"]}</content>
<published>#{
inserted_at
}</published>
<updated>#{
updated_at
}</updated>
<published>#{
activity.data["published"]
}</published>
<updated>#{
activity.data["published"]
}</updated>
<activity:object>
<activity:object-type>http://activitystrea.ms/schema/1.0/person</activity:object-type>
<id>#{activity.data["object"]}</id>
...
...
@@ -207,12 +180,6 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do
{
:ok
,
_activity
}
=
ActivityPub
.
follow
(
follower
,
followed
)
{
:ok
,
activity
}
=
ActivityPub
.
unfollow
(
follower
,
followed
)
# TODO: Are these the correct dates?
updated_at
=
activity
.
updated_at
|>
NaiveDateTime
.
to_iso8601
inserted_at
=
activity
.
inserted_at
|>
NaiveDateTime
.
to_iso8601
tuple
=
ActivityRepresenter
.
to_simple_form
(
activity
,
follower
)
refute
is_nil
(
tuple
)
...
...
@@ -225,8 +192,8 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenterTest do
<id>#{activity.data["id"]}</id>
<title>#{follower.nickname} stopped following #{followed.ap_id}</title>
<content type="html"> #{follower.nickname} stopped following #{followed.ap_id}</content>
<published>#{
inserted_at
}</published>
<updated>#{
updated_at
}</updated>
<published>#{
activity.data["published"]
}</published>
<updated>#{
activity.data["published"]
}</updated>
<activity:object>
<activity:object-type>http://activitystrea.ms/schema/1.0/person</activity:object-type>
<id>#{followed.ap_id}</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