1 defmodule Pleroma.Web.OStatus do
5 alias Pleroma.{Repo, User, Web}
6 alias Pleroma.Web.ActivityPub.ActivityPub
9 "#{user.ap_id}/feed.atom"
12 def pubsub_path(user) do
13 "#{Web.base_url}/push/hub/#{user.nickname}"
16 def salmon_path(user) do
17 "#{user.ap_id}/salmon"
20 def handle_incoming(xml_string) do
21 {doc, _rest} = :xmerl_scan.string(to_charlist(xml_string))
23 {:xmlObj, :string, object_type } = :xmerl_xpath.string('string(/entry/activity:object-type[1])', doc)
26 'http://activitystrea.ms/schema/1.0/note' ->
29 Logger.error("Couldn't parse incoming document")
37 # Set correct statusnet ids.
38 def handle_note(doc) do
39 content_html = string_from_xpath("/entry/content[1]", doc)
41 [author] = :xmerl_xpath.string('/entry/author[1]', doc)
42 {:ok, actor} = find_or_make_user(author)
44 context = ActivityPub.generate_context_id
47 "https://www.w3.org/ns/activitystreams#Public"
50 date = string_from_xpath("/entry/published", doc)
55 "content" => content_html,
58 "actor" => actor.ap_id
61 ActivityPub.create(to, actor, context, object, %{}, date)
64 def find_or_make(author, doc) do
65 query = from user in User,
66 where: user.local == false and fragment("? @> ?", user.info, ^%{ostatus_uri: author})
68 user = Repo.one(query)
77 def find_or_make_user(author_doc) do
78 {:xmlObj, :string, uri } = :xmerl_xpath.string('string(/author[1]/uri)', author_doc)
80 query = from user in User,
81 where: user.local == false and fragment("? @> ?", user.info, ^%{ostatus_uri: to_string(uri)})
83 user = Repo.one(query)
92 defp string_from_xpath(xpath, doc) do
93 {:xmlObj, :string, res} = :xmerl_xpath.string('string(#{xpath})', doc)
99 if res == "", do: nil, else: res
102 def make_user(author_doc) do
103 author = string_from_xpath("/author[1]/uri", author_doc)
104 name = string_from_xpath("/author[1]/name", author_doc)
105 preferredUsername = string_from_xpath("/author[1]/poco:preferredUsername", author_doc)
106 displayName = string_from_xpath("/author[1]/poco:displayName", author_doc)
107 avatar = make_avatar_object(author_doc)
111 name: preferredUsername || name,
112 nickname: displayName || name,
115 "ostatus_uri" => author,
116 "host" => URI.parse(author).host,
117 "system" => "ostatus"
122 Repo.insert(Ecto.Changeset.change(%User{}, data))
125 # TODO: Just takes the first one for now.
126 defp make_avatar_object(author_doc) do
127 href = string_from_xpath("/author[1]/link[@rel=\"avatar\"]/@href", author_doc)
128 type = string_from_xpath("/author[1]/link[@rel=\"avatar\"]/@type", author_doc)