Merge branch 'develop' into dtluna/pleroma-feature/unfollow-activity
[akkoma] / lib / pleroma / web / twitter_api / twitter_api.ex
1 defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
2 alias Pleroma.{User, Activity, Repo, Object}
3 alias Pleroma.Web.ActivityPub.ActivityPub
4 alias Pleroma.Web.TwitterAPI.Representers.{ActivityRepresenter, UserRepresenter}
5
6 import Ecto.Query
7
8 def to_for_user_and_mentions(user, mentions) do
9 default_to = [
10 User.ap_followers(user),
11 "https://www.w3.org/ns/activitystreams#Public"
12 ]
13
14 default_to ++ Enum.map(mentions, fn ({_, %{ap_id: ap_id}}) -> ap_id end)
15 end
16
17 def format_input(text, mentions) do
18 HtmlSanitizeEx.strip_tags(text)
19 |> String.replace("\n", "<br>")
20 |> add_user_links(mentions)
21 end
22
23 def attachments_from_ids(ids) do
24 Enum.map(ids || [], fn (media_id) ->
25 Repo.get(Object, media_id).data
26 end)
27 end
28
29 def get_replied_to_activity(id) when not is_nil(id) do
30 Repo.get(Activity, id)
31 end
32
33 def get_replied_to_activity(_), do: nil
34
35 def add_attachments(text, attachments) do
36 attachment_text = Enum.map(attachments, fn
37 (%{"url" => [%{"href" => href} | _]}) ->
38 "<a href='#{href}'>#{href}</a>"
39 _ -> ""
40 end)
41 Enum.join([text | attachment_text], "<br>")
42 end
43
44 def create_status(%User{} = user, %{"status" => status} = data) do
45 attachments = attachments_from_ids(data["media_ids"])
46 context = ActivityPub.generate_context_id
47 mentions = parse_mentions(status)
48 content_html = status
49 |> format_input(mentions)
50 |> add_attachments(attachments)
51
52 to = to_for_user_and_mentions(user, mentions)
53 date = make_date()
54
55 inReplyTo = get_replied_to_activity(data["in_reply_to_status_id"])
56
57 # Wire up reply info.
58 [to, context, object, additional] =
59 if inReplyTo do
60 context = inReplyTo.data["context"]
61 to = to ++ [inReplyTo.data["actor"]]
62
63 object = %{
64 "type" => "Note",
65 "to" => to,
66 "content" => content_html,
67 "published" => date,
68 "context" => context,
69 "attachment" => attachments,
70 "actor" => user.ap_id,
71 "inReplyTo" => inReplyTo.data["object"]["id"],
72 "inReplyToStatusId" => inReplyTo.id,
73 }
74 additional = %{}
75
76 [to, context, object, additional]
77 else
78 object = %{
79 "type" => "Note",
80 "to" => to,
81 "content" => content_html,
82 "published" => date,
83 "context" => context,
84 "attachment" => attachments,
85 "actor" => user.ap_id
86 }
87 [to, context, object, %{}]
88 end
89
90 ActivityPub.create(to, user, context, object, additional, data)
91 end
92
93 def fetch_friend_statuses(user, opts \\ %{}) do
94 ActivityPub.fetch_activities([user.ap_id | user.following], opts)
95 |> activities_to_statuses(%{for: user})
96 end
97
98 def fetch_public_statuses(user, opts \\ %{}) do
99 opts = Map.put(opts, "local_only", true)
100 ActivityPub.fetch_public_activities(opts)
101 |> activities_to_statuses(%{for: user})
102 end
103
104 def fetch_public_and_external_statuses(user, opts \\ %{}) do
105 ActivityPub.fetch_public_activities(opts)
106 |> activities_to_statuses(%{for: user})
107 end
108
109 def fetch_user_statuses(user, opts \\ %{}) do
110 ActivityPub.fetch_activities([], opts)
111 |> activities_to_statuses(%{for: user})
112 end
113
114 def fetch_mentions(user, opts \\ %{}) do
115 ActivityPub.fetch_activities([user.ap_id], opts)
116 |> activities_to_statuses(%{for: user})
117 end
118
119 def fetch_conversation(user, id) do
120 with context when is_binary(context) <- conversation_id_to_context(id),
121 activities <- ActivityPub.fetch_activities_for_context(context),
122 statuses <- activities |> activities_to_statuses(%{for: user})
123 do
124 statuses
125 else _e ->
126 []
127 end
128 end
129
130 def fetch_status(user, id) do
131 with %Activity{} = activity <- Repo.get(Activity, id) do
132 activity_to_status(activity, %{for: user})
133 end
134 end
135
136 def follow(%User{} = follower, params) do
137 with {:ok, %User{} = followed} <- get_user(params),
138 {:ok, follower} <- User.follow(follower, followed),
139 {:ok, activity} <- ActivityPub.follow(follower, followed)
140 do
141 {:ok, follower, followed, activity}
142 else
143 err -> err
144 end
145 end
146
147 def unfollow(%User{} = follower, params) do
148 with { :ok, %User{} = unfollowed } <- get_user(params),
149 { :ok, follower, follow_activity } <- User.unfollow(follower, unfollowed),
150 { :ok, _activity } <- ActivityPub.insert(%{
151 "type" => "Undo",
152 "actor" => follower.ap_id,
153 "object" => follow_activity.data["id"], # get latest Follow for these users
154 "published" => make_date()
155 })
156 do
157 { :ok, follower, unfollowed }
158 else
159 err -> err
160 end
161 end
162
163 def favorite(%User{} = user, %Activity{data: %{"object" => object}} = activity) do
164 object = Object.get_by_ap_id(object["id"])
165
166 {:ok, _like_activity, object} = ActivityPub.like(user, object)
167 new_data = activity.data
168 |> Map.put("object", object.data)
169
170 status = %{activity | data: new_data}
171 |> activity_to_status(%{for: user})
172
173 {:ok, status}
174 end
175
176 def unfavorite(%User{} = user, %Activity{data: %{"object" => object}} = activity) do
177 object = Object.get_by_ap_id(object["id"])
178
179 {:ok, object} = ActivityPub.unlike(user, object)
180 new_data = activity.data
181 |> Map.put("object", object.data)
182
183 status = %{activity | data: new_data}
184 |> activity_to_status(%{for: user})
185
186 {:ok, status}
187 end
188
189 def retweet(%User{} = user, %Activity{data: %{"object" => object}} = activity) do
190 object = Object.get_by_ap_id(object["id"])
191
192 {:ok, _announce_activity, object} = ActivityPub.announce(user, object)
193 new_data = activity.data
194 |> Map.put("object", object.data)
195
196 status = %{activity | data: new_data}
197 |> activity_to_status(%{for: user})
198
199 {:ok, status}
200 end
201
202 def upload(%Plug.Upload{} = file, format \\ "xml") do
203 {:ok, object} = ActivityPub.upload(file)
204
205 url = List.first(object.data["url"])
206 href = url["href"]
207 type = url["mediaType"]
208
209 case format do
210 "xml" ->
211 # Fake this as good as possible...
212 """
213 <?xml version="1.0" encoding="UTF-8"?>
214 <rsp stat="ok" xmlns:atom="http://www.w3.org/2005/Atom">
215 <mediaid>#{object.id}</mediaid>
216 <media_id>#{object.id}</media_id>
217 <media_id_string>#{object.id}</media_id_string>
218 <media_url>#{href}</media_url>
219 <mediaurl>#{href}</mediaurl>
220 <atom:link rel="enclosure" href="#{href}" type="#{type}"></atom:link>
221 </rsp>
222 """
223 "json" ->
224 %{
225 media_id: object.id,
226 media_id_string: "#{object.id}}",
227 media_url: href,
228 size: 0
229 } |> Poison.encode!
230 end
231 end
232
233 def parse_mentions(text) do
234 # Modified from https://www.w3.org/TR/html5/forms.html#valid-e-mail-address
235 regex = ~r/@[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@?[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*/
236
237 Regex.scan(regex, text)
238 |> List.flatten
239 |> Enum.uniq
240 |> Enum.map(fn ("@" <> match = full_match) -> {full_match, User.get_cached_by_nickname(match)} end)
241 |> Enum.filter(fn ({_match, user}) -> user end)
242 end
243
244 def add_user_links(text, mentions) do
245 Enum.reduce(mentions, text, fn ({match, %User{ap_id: ap_id}}, text) -> String.replace(text, match, "<a href='#{ap_id}'>#{match}</a>") end)
246 end
247
248 def register_user(params) do
249 params = %{
250 nickname: params["nickname"],
251 name: params["fullname"],
252 bio: params["bio"],
253 email: params["email"],
254 password: params["password"],
255 password_confirmation: params["confirm"]
256 }
257
258 changeset = User.register_changeset(%User{}, params)
259
260 with {:ok, user} <- Repo.insert(changeset) do
261 {:ok, UserRepresenter.to_map(user)}
262 else
263 {:error, changeset} ->
264 errors = Ecto.Changeset.traverse_errors(changeset, fn {msg, _opts} -> msg end)
265 |> Poison.encode!
266 {:error, %{error: errors}}
267 end
268 end
269
270 def get_user(user \\ nil, params) do
271 case params do
272 %{"user_id" => user_id} ->
273 case target = Repo.get(User, user_id) do
274 nil ->
275 {:error, "No user with such user_id"}
276 _ ->
277 {:ok, target}
278 end
279 %{"screen_name" => nickname} ->
280 case target = Repo.get_by(User, nickname: nickname) do
281 nil ->
282 {:error, "No user with such screen_name"}
283 _ ->
284 {:ok, target}
285 end
286 _ ->
287 if user do
288 {:ok, user}
289 else
290 {:error, "You need to specify screen_name or user_id"}
291 end
292 end
293 end
294
295 defp activities_to_statuses(activities, opts) do
296 Enum.map(activities, fn(activity) ->
297 activity_to_status(activity, opts)
298 end)
299 end
300
301 # For likes, fetch the liked activity, too.
302 defp activity_to_status(%Activity{data: %{"type" => "Like"}} = activity, opts) do
303 actor = get_in(activity.data, ["actor"])
304 user = User.get_cached_by_ap_id(actor)
305 [liked_activity] = Activity.all_by_object_ap_id(activity.data["object"])
306
307 ActivityRepresenter.to_map(activity, Map.merge(opts, %{user: user, liked_activity: liked_activity}))
308 end
309
310 # For announces, fetch the announced activity and the user.
311 defp activity_to_status(%Activity{data: %{"type" => "Announce"}} = activity, opts) do
312 actor = get_in(activity.data, ["actor"])
313 user = User.get_cached_by_ap_id(actor)
314 [announced_activity] = Activity.all_by_object_ap_id(activity.data["object"])
315 announced_actor = User.get_cached_by_ap_id(announced_activity.data["actor"])
316
317 ActivityRepresenter.to_map(activity, Map.merge(opts, %{users: [user, announced_actor], announced_activity: announced_activity}))
318 end
319
320 defp activity_to_status(activity, opts) do
321 actor = get_in(activity.data, ["actor"])
322 user = User.get_cached_by_ap_id(actor)
323 # mentioned_users = Repo.all(from user in User, where: user.ap_id in ^activity.data["to"])
324 mentioned_users = Enum.map(activity.data["to"] || [], fn (ap_id) ->
325 User.get_cached_by_ap_id(ap_id)
326 end)
327 |> Enum.filter(&(&1))
328
329 ActivityRepresenter.to_map(activity, Map.merge(opts, %{user: user, mentioned: mentioned_users}))
330 end
331
332 defp make_date do
333 DateTime.utc_now() |> DateTime.to_iso8601
334 end
335
336 def context_to_conversation_id(context) do
337 with %Object{id: id} <- Object.get_cached_by_ap_id(context) do
338 id
339 else _e ->
340 changeset = Object.context_mapping(context)
341 {:ok, %{id: id}} = Repo.insert(changeset)
342 id
343 end
344 end
345
346 def conversation_id_to_context(id) do
347 with %Object{data: %{"id" => context}} <- Repo.get(Object, id) do
348 context
349 else _e ->
350 {:error, "No such conversation"}
351 end
352 end
353 end