Banners are objects.
[akkoma] / lib / pleroma / web / ostatus / ostatus.ex
1 defmodule Pleroma.Web.OStatus do
2 @httpoison Application.get_env(:pleroma, :httpoison)
3
4 import Ecto.Query
5 import Pleroma.Web.XML
6 require Logger
7
8 alias Pleroma.{Repo, User, Web, Object, Activity}
9 alias Pleroma.Web.ActivityPub.ActivityPub
10 alias Pleroma.Web.ActivityPub.Utils
11 alias Pleroma.Web.{WebFinger, Websub}
12 alias Pleroma.Web.OStatus.{FollowHandler, NoteHandler, DeleteHandler}
13
14 def feed_path(user) do
15 "#{user.ap_id}/feed.atom"
16 end
17
18 def pubsub_path(user) do
19 "#{Web.base_url}/push/hub/#{user.nickname}"
20 end
21
22 def salmon_path(user) do
23 "#{user.ap_id}/salmon"
24 end
25
26 def handle_incoming(xml_string) do
27 with doc when doc != :error <- parse_document(xml_string) do
28 entries = :xmerl_xpath.string('//entry', doc)
29
30 activities = Enum.map(entries, fn (entry) ->
31 {:xmlObj, :string, object_type} = :xmerl_xpath.string('string(/entry/activity:object-type[1])', entry)
32 {:xmlObj, :string, verb} = :xmerl_xpath.string('string(/entry/activity:verb[1])', entry)
33 Logger.debug("Handling #{verb}")
34
35 try do
36 case verb do
37 'http://activitystrea.ms/schema/1.0/delete' ->
38 with {:ok, activity} <- DeleteHandler.handle_delete(entry, doc), do: activity
39 'http://activitystrea.ms/schema/1.0/follow' ->
40 with {:ok, activity} <- FollowHandler.handle(entry, doc), do: activity
41 'http://activitystrea.ms/schema/1.0/share' ->
42 with {:ok, activity, retweeted_activity} <- handle_share(entry, doc), do: [activity, retweeted_activity]
43 'http://activitystrea.ms/schema/1.0/favorite' ->
44 with {:ok, activity, favorited_activity} <- handle_favorite(entry, doc), do: [activity, favorited_activity]
45 _ ->
46 case object_type do
47 'http://activitystrea.ms/schema/1.0/note' ->
48 with {:ok, activity} <- NoteHandler.handle_note(entry, doc), do: activity
49 'http://activitystrea.ms/schema/1.0/comment' ->
50 with {:ok, activity} <- NoteHandler.handle_note(entry, doc), do: activity
51 _ ->
52 Logger.error("Couldn't parse incoming document")
53 nil
54 end
55 end
56 rescue
57 e ->
58 Logger.error("Error occured while handling activity")
59 Logger.error(xml_string)
60 Logger.error(inspect(e))
61 nil
62 end
63 end)
64 |> Enum.filter(&(&1))
65
66 {:ok, activities}
67 else
68 _e -> {:error, []}
69 end
70 end
71
72 def make_share(entry, doc, retweeted_activity) do
73 with {:ok, actor} <- find_make_or_update_user(doc),
74 %Object{} = object <- Object.get_by_ap_id(retweeted_activity.data["object"]["id"]),
75 id when not is_nil(id) <- string_from_xpath("/entry/id", entry),
76 {:ok, activity, _object} = ActivityPub.announce(actor, object, id, false) do
77 {:ok, activity}
78 end
79 end
80
81 def handle_share(entry, doc) do
82 with {:ok, retweeted_activity} <- get_or_build_object(entry),
83 {:ok, activity} <- make_share(entry, doc, retweeted_activity) do
84 {:ok, activity, retweeted_activity}
85 else
86 e -> {:error, e}
87 end
88 end
89
90 def make_favorite(entry, doc, favorited_activity) do
91 with {:ok, actor} <- find_make_or_update_user(doc),
92 %Object{} = object <- Object.get_by_ap_id(favorited_activity.data["object"]["id"]),
93 id when not is_nil(id) <- string_from_xpath("/entry/id", entry),
94 {:ok, activity, _object} = ActivityPub.like(actor, object, id, false) do
95 {:ok, activity}
96 end
97 end
98
99 def get_or_build_object(entry) do
100 with {:ok, activity} <- get_or_try_fetching(entry) do
101 {:ok, activity}
102 else
103 _e ->
104 with [object] <- :xmerl_xpath.string('/entry/activity:object', entry) do
105 NoteHandler.handle_note(object, object)
106 end
107 end
108 end
109
110 def get_or_try_fetching(entry) do
111 Logger.debug("Trying to get entry from db")
112 with id when not is_nil(id) <- string_from_xpath("//activity:object[1]/id", entry),
113 %Activity{} = activity <- Activity.get_create_activity_by_object_ap_id(id) do
114 {:ok, activity}
115 else e ->
116 Logger.debug("Couldn't get, will try to fetch")
117 with href when not is_nil(href) <- string_from_xpath("//activity:object[1]/link[@type=\"text/html\"]/@href", entry),
118 {:ok, [favorited_activity]} <- fetch_activity_from_url(href) do
119 {:ok, favorited_activity}
120 else e -> Logger.debug("Couldn't find href: #{inspect(e)}")
121 end
122 end
123 end
124
125 def handle_favorite(entry, doc) do
126 with {:ok, favorited_activity} <- get_or_try_fetching(entry),
127 {:ok, activity} <- make_favorite(entry, doc, favorited_activity) do
128 {:ok, activity, favorited_activity}
129 else
130 e -> {:error, e}
131 end
132 end
133
134 def get_attachments(entry) do
135 :xmerl_xpath.string('/entry/link[@rel="enclosure"]', entry)
136 |> Enum.map(fn (enclosure) ->
137 with href when not is_nil(href) <- string_from_xpath("/link/@href", enclosure),
138 type when not is_nil(type) <- string_from_xpath("/link/@type", enclosure) do
139 %{
140 "type" => "Attachment",
141 "url" => [%{
142 "type" => "Link",
143 "mediaType" => type,
144 "href" => href
145 }]
146 }
147 end
148 end)
149 |> Enum.filter(&(&1))
150 end
151
152 @doc """
153 Gets the content from a an entry. Will add the cw text to the body for cw'd
154 Mastodon notes.
155 """
156 def get_content(entry) do
157 base_content = string_from_xpath("//content", entry)
158
159 with scope when not is_nil(scope) <- string_from_xpath("//mastodon:scope", entry),
160 cw when not is_nil(cw) <- string_from_xpath("/*/summary", entry) do
161 "<span class='mastodon-cw'>#{cw}</span><br>#{base_content}"
162 else _e -> base_content
163 end
164 end
165
166 def get_tags(entry) do
167 :xmerl_xpath.string('//category', entry)
168 |> Enum.map(fn (category) -> string_from_xpath("/category/@term", category) |> String.downcase end)
169 end
170
171 def maybe_update(doc, user) do
172 old_data = %{
173 avatar: user.avatar,
174 bio: user.bio,
175 name: user.name,
176 info: user.info
177 }
178
179 with false <- user.local,
180 avatar <- make_avatar_object(doc),
181 bio <- string_from_xpath("//author[1]/summary", doc),
182 name <- string_from_xpath("//author[1]/poco:displayName", doc),
183 info <- Map.put(user.info, "banner", make_avatar_object(doc, "header") || user.info["banner"]),
184 new_data <- %{avatar: avatar || old_data.avatar, name: name || old_data.name, bio: bio || old_data.bio, info: info || old_data.info},
185 false <- new_data == old_data do
186 change = Ecto.Changeset.change(user, new_data)
187 Repo.update(change)
188 else e ->
189 {:ok, user}
190 end
191 end
192
193 def find_make_or_update_user(doc) do
194 uri = string_from_xpath("//author/uri[1]", doc)
195 with {:ok, user} <- find_or_make_user(uri) do
196 maybe_update(doc, user)
197 end
198 end
199
200 def find_or_make_user(uri) do
201 query = from user in User,
202 where: user.ap_id == ^uri
203
204 user = Repo.one(query)
205
206 if is_nil(user) do
207 make_user(uri)
208 else
209 {:ok, user}
210 end
211 end
212
213 def insert_or_update_user(data) do
214 cs = User.remote_user_creation(data)
215 Repo.insert(cs, on_conflict: :replace_all, conflict_target: :nickname)
216 end
217
218 def make_user(uri) do
219 with {:ok, info} <- gather_user_info(uri) do
220 data = %{
221 name: info["name"],
222 nickname: info["nickname"] <> "@" <> info["host"],
223 ap_id: info["uri"],
224 info: info,
225 avatar: info["avatar"],
226 bio: info["bio"]
227 }
228 with %User{} = user <- User.get_by_ap_id(data.ap_id) do
229 {:ok, user}
230 else _e -> insert_or_update_user(data)
231 end
232 end
233 end
234
235 # TODO: Just takes the first one for now.
236 def make_avatar_object(author_doc, rel \\ "avatar") do
237 href = string_from_xpath("//author[1]/link[@rel=\"#{rel}\"]/@href", author_doc)
238 type = string_from_xpath("//author[1]/link[@rel=\"#{rel}\"]/@type", author_doc)
239
240 if href do
241 %{
242 "type" => "Image",
243 "url" =>
244 [%{
245 "type" => "Link",
246 "mediaType" => type,
247 "href" => href
248 }]
249 }
250 else
251 nil
252 end
253 end
254
255 def gather_user_info(username) do
256 with {:ok, webfinger_data} <- WebFinger.finger(username),
257 {:ok, feed_data} <- Websub.gather_feed_data(webfinger_data["topic"]) do
258 {:ok, Map.merge(webfinger_data, feed_data) |> Map.put("fqn", username)}
259 else e ->
260 Logger.debug(fn -> "Couldn't gather info for #{username}" end)
261 {:error, e}
262 end
263 end
264
265 # Regex-based 'parsing' so we don't have to pull in a full html parser
266 # It's a hack anyway. Maybe revisit this in the future
267 @mastodon_regex ~r/<link href='(.*)' rel='alternate' type='application\/atom\+xml'>/
268 @gs_regex ~r/<link title=.* href="(.*)" type="application\/atom\+xml" rel="alternate">/
269 @gs_classic_regex ~r/<link rel="alternate" href="(.*)" type="application\/atom\+xml" title=.*>/
270 def get_atom_url(body) do
271 cond do
272 Regex.match?(@mastodon_regex, body) ->
273 [[_, match]] = Regex.scan(@mastodon_regex, body)
274 {:ok, match}
275 Regex.match?(@gs_regex, body) ->
276 [[_, match]] = Regex.scan(@gs_regex, body)
277 {:ok, match}
278 Regex.match?(@gs_classic_regex, body) ->
279 [[_, match]] = Regex.scan(@gs_classic_regex, body)
280 {:ok, match}
281 true ->
282 Logger.debug(fn -> "Couldn't find atom link in #{inspect(body)}" end)
283 {:error, "Couldn't find the atom link"}
284 end
285 end
286
287 def fetch_activity_from_atom_url(url) do
288 with {:ok, %{body: body, status_code: code}} when code in 200..299 <- @httpoison.get(url, [Accept: "application/atom+xml"], follow_redirect: true, timeout: 10000, recv_timeout: 20000) do
289 Logger.debug("Got document from #{url}, handling...")
290 handle_incoming(body)
291 else e -> Logger.debug("Couldn't get #{url}: #{inspect(e)}")
292 end
293 end
294
295 def fetch_activity_from_html_url(url) do
296 Logger.debug("Trying to fetch #{url}")
297 with {:ok, %{body: body}} <- @httpoison.get(url, [], follow_redirect: true, timeout: 10000, recv_timeout: 20000),
298 {:ok, atom_url} <- get_atom_url(body) do
299 fetch_activity_from_atom_url(atom_url)
300 else e -> Logger.debug("Couldn't get #{url}: #{inspect(e)}")
301 end
302 end
303
304 def fetch_activity_from_url(url) do
305 try do
306 with {:ok, activities} when length(activities) > 0 <- fetch_activity_from_atom_url(url) do
307 {:ok, activities}
308 else
309 _e -> with {:ok, activities} <- fetch_activity_from_html_url(url) do
310 {:ok, activities}
311 end
312 end
313 rescue
314 e ->
315 Logger.debug("Couldn't get #{url}: #{inspect(e)}")
316 {:error, "Couldn't get #{url}: #{inspect(e)}"}
317 end
318 end
319 end