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