reply filtering
[akkoma] / benchmarks / load_testing / fetcher.ex
1 defmodule Pleroma.LoadTesting.Fetcher do
2 alias Pleroma.Activity
3 alias Pleroma.Pagination
4 alias Pleroma.Repo
5 alias Pleroma.User
6 alias Pleroma.Web.ActivityPub.ActivityPub
7 alias Pleroma.Web.MastodonAPI.MastodonAPI
8 alias Pleroma.Web.MastodonAPI.StatusView
9
10 @spec run_benchmarks(User.t()) :: any()
11 def run_benchmarks(user) do
12 fetch_user(user)
13 fetch_timelines(user)
14 render_views(user)
15 end
16
17 defp formatters do
18 [
19 Benchee.Formatters.Console
20 ]
21 end
22
23 defp fetch_user(user) do
24 Benchee.run(
25 %{
26 "By id" => fn -> Repo.get_by(User, id: user.id) end,
27 "By ap_id" => fn -> Repo.get_by(User, ap_id: user.ap_id) end,
28 "By email" => fn -> Repo.get_by(User, email: user.email) end,
29 "By nickname" => fn -> Repo.get_by(User, nickname: user.nickname) end
30 },
31 formatters: formatters()
32 )
33 end
34
35 defp fetch_timelines(user) do
36 fetch_home_timeline(user)
37 fetch_direct_timeline(user)
38 fetch_public_timeline(user)
39 fetch_public_timeline(user, :local)
40 fetch_public_timeline(user, :tag)
41 fetch_notifications(user)
42 fetch_favourites(user)
43 fetch_long_thread(user)
44 end
45
46 defp render_views(user) do
47 render_timelines(user)
48 render_long_thread(user)
49 end
50
51 defp opts_for_home_timeline(user) do
52 %{
53 "blocking_user" => user,
54 "count" => "20",
55 "muting_user" => user,
56 "type" => ["Create", "Announce"],
57 "user" => user,
58 "with_muted" => "true"
59 }
60 end
61
62 defp fetch_home_timeline(user) do
63 opts = opts_for_home_timeline(user)
64
65 recipients = [user.ap_id | User.following(user)]
66
67 first_page_last =
68 ActivityPub.fetch_activities(recipients, opts) |> Enum.reverse() |> List.last()
69
70 second_page_last =
71 ActivityPub.fetch_activities(recipients, Map.put(opts, "max_id", first_page_last.id))
72 |> Enum.reverse()
73 |> List.last()
74
75 third_page_last =
76 ActivityPub.fetch_activities(recipients, Map.put(opts, "max_id", second_page_last.id))
77 |> Enum.reverse()
78 |> List.last()
79
80 forth_page_last =
81 ActivityPub.fetch_activities(recipients, Map.put(opts, "max_id", third_page_last.id))
82 |> Enum.reverse()
83 |> List.last()
84
85 Benchee.run(
86 %{
87 "home timeline" => fn opts -> ActivityPub.fetch_activities(recipients, opts) end
88 },
89 inputs: %{
90 "1 page" => opts,
91 "2 page" => Map.put(opts, "max_id", first_page_last.id),
92 "3 page" => Map.put(opts, "max_id", second_page_last.id),
93 "4 page" => Map.put(opts, "max_id", third_page_last.id),
94 "5 page" => Map.put(opts, "max_id", forth_page_last.id),
95 "1 page only media" => Map.put(opts, "only_media", "true"),
96 "2 page only media" =>
97 Map.put(opts, "max_id", first_page_last.id) |> Map.put("only_media", "true"),
98 "3 page only media" =>
99 Map.put(opts, "max_id", second_page_last.id) |> Map.put("only_media", "true"),
100 "4 page only media" =>
101 Map.put(opts, "max_id", third_page_last.id) |> Map.put("only_media", "true"),
102 "5 page only media" =>
103 Map.put(opts, "max_id", forth_page_last.id) |> Map.put("only_media", "true")
104 },
105 formatters: formatters()
106 )
107 end
108
109 defp opts_for_direct_timeline(user) do
110 %{
111 :visibility => "direct",
112 "blocking_user" => user,
113 "count" => "20",
114 "type" => "Create",
115 "user" => user,
116 "with_muted" => "true"
117 }
118 end
119
120 defp fetch_direct_timeline(user) do
121 recipients = [user.ap_id]
122
123 opts = opts_for_direct_timeline(user)
124
125 first_page_last =
126 recipients
127 |> ActivityPub.fetch_activities_query(opts)
128 |> Pagination.fetch_paginated(opts)
129 |> List.last()
130
131 opts2 = Map.put(opts, "max_id", first_page_last.id)
132
133 second_page_last =
134 recipients
135 |> ActivityPub.fetch_activities_query(opts2)
136 |> Pagination.fetch_paginated(opts2)
137 |> List.last()
138
139 opts3 = Map.put(opts, "max_id", second_page_last.id)
140
141 third_page_last =
142 recipients
143 |> ActivityPub.fetch_activities_query(opts3)
144 |> Pagination.fetch_paginated(opts3)
145 |> List.last()
146
147 opts4 = Map.put(opts, "max_id", third_page_last.id)
148
149 forth_page_last =
150 recipients
151 |> ActivityPub.fetch_activities_query(opts4)
152 |> Pagination.fetch_paginated(opts4)
153 |> List.last()
154
155 Benchee.run(
156 %{
157 "direct timeline" => fn opts ->
158 ActivityPub.fetch_activities_query(recipients, opts) |> Pagination.fetch_paginated(opts)
159 end
160 },
161 inputs: %{
162 "1 page" => opts,
163 "2 page" => opts2,
164 "3 page" => opts3,
165 "4 page" => opts4,
166 "5 page" => Map.put(opts4, "max_id", forth_page_last.id)
167 },
168 formatters: formatters()
169 )
170 end
171
172 defp opts_for_public_timeline(user) do
173 %{
174 "type" => ["Create", "Announce"],
175 "local_only" => false,
176 "blocking_user" => user,
177 "muting_user" => user
178 }
179 end
180
181 defp opts_for_public_timeline(user, :local) do
182 %{
183 "type" => ["Create", "Announce"],
184 "local_only" => true,
185 "blocking_user" => user,
186 "muting_user" => user
187 }
188 end
189
190 defp opts_for_public_timeline(user, :tag) do
191 %{
192 "blocking_user" => user,
193 "count" => "20",
194 "local_only" => nil,
195 "muting_user" => user,
196 "tag" => ["tag"],
197 "tag_all" => [],
198 "tag_reject" => [],
199 "type" => "Create",
200 "user" => user,
201 "with_muted" => "true"
202 }
203 end
204
205 defp fetch_public_timeline(user) do
206 opts = opts_for_public_timeline(user)
207
208 fetch_public_timeline(opts, "public timeline")
209 end
210
211 defp fetch_public_timeline(user, :local) do
212 opts = opts_for_public_timeline(user, :local)
213
214 fetch_public_timeline(opts, "public timeline only local")
215 end
216
217 defp fetch_public_timeline(user, :tag) do
218 opts = opts_for_public_timeline(user, :tag)
219
220 fetch_public_timeline(opts, "hashtag timeline")
221 end
222
223 defp fetch_public_timeline(user, :only_media) do
224 opts = opts_for_public_timeline(user) |> Map.put("only_media", "true")
225
226 fetch_public_timeline(opts, "public timeline only media")
227 end
228
229 defp fetch_public_timeline(opts, title) when is_binary(title) do
230 first_page_last = ActivityPub.fetch_public_activities(opts) |> List.last()
231
232 second_page_last =
233 ActivityPub.fetch_public_activities(Map.put(opts, "max_id", first_page_last.id))
234 |> List.last()
235
236 third_page_last =
237 ActivityPub.fetch_public_activities(Map.put(opts, "max_id", second_page_last.id))
238 |> List.last()
239
240 forth_page_last =
241 ActivityPub.fetch_public_activities(Map.put(opts, "max_id", third_page_last.id))
242 |> List.last()
243
244 Benchee.run(
245 %{
246 title => fn opts ->
247 ActivityPub.fetch_public_activities(opts)
248 end
249 },
250 inputs: %{
251 "1 page" => opts,
252 "2 page" => Map.put(opts, "max_id", first_page_last.id),
253 "3 page" => Map.put(opts, "max_id", second_page_last.id),
254 "4 page" => Map.put(opts, "max_id", third_page_last.id),
255 "5 page" => Map.put(opts, "max_id", forth_page_last.id)
256 },
257 formatters: formatters()
258 )
259 end
260
261 defp opts_for_notifications do
262 %{"count" => "20", "with_muted" => "true"}
263 end
264
265 defp fetch_notifications(user) do
266 opts = opts_for_notifications()
267
268 first_page_last = MastodonAPI.get_notifications(user, opts) |> List.last()
269
270 second_page_last =
271 MastodonAPI.get_notifications(user, Map.put(opts, "max_id", first_page_last.id))
272 |> List.last()
273
274 third_page_last =
275 MastodonAPI.get_notifications(user, Map.put(opts, "max_id", second_page_last.id))
276 |> List.last()
277
278 forth_page_last =
279 MastodonAPI.get_notifications(user, Map.put(opts, "max_id", third_page_last.id))
280 |> List.last()
281
282 Benchee.run(
283 %{
284 "Notifications" => fn opts ->
285 MastodonAPI.get_notifications(user, opts)
286 end
287 },
288 inputs: %{
289 "1 page" => opts,
290 "2 page" => Map.put(opts, "max_id", first_page_last.id),
291 "3 page" => Map.put(opts, "max_id", second_page_last.id),
292 "4 page" => Map.put(opts, "max_id", third_page_last.id),
293 "5 page" => Map.put(opts, "max_id", forth_page_last.id)
294 },
295 formatters: formatters()
296 )
297 end
298
299 defp fetch_favourites(user) do
300 first_page_last = ActivityPub.fetch_favourites(user) |> List.last()
301
302 second_page_last =
303 ActivityPub.fetch_favourites(user, %{"max_id" => first_page_last.id}) |> List.last()
304
305 third_page_last =
306 ActivityPub.fetch_favourites(user, %{"max_id" => second_page_last.id}) |> List.last()
307
308 forth_page_last =
309 ActivityPub.fetch_favourites(user, %{"max_id" => third_page_last.id}) |> List.last()
310
311 Benchee.run(
312 %{
313 "Favourites" => fn opts ->
314 ActivityPub.fetch_favourites(user, opts)
315 end
316 },
317 inputs: %{
318 "1 page" => %{},
319 "2 page" => %{"max_id" => first_page_last.id},
320 "3 page" => %{"max_id" => second_page_last.id},
321 "4 page" => %{"max_id" => third_page_last.id},
322 "5 page" => %{"max_id" => forth_page_last.id}
323 },
324 formatters: formatters()
325 )
326 end
327
328 defp opts_for_long_thread(user) do
329 %{
330 "blocking_user" => user,
331 "user" => user
332 }
333 end
334
335 defp fetch_long_thread(user) do
336 %{public_thread: public, private_thread: private} =
337 Agent.get(:benchmark_state, fn state -> state end)
338
339 opts = opts_for_long_thread(user)
340
341 private_input = {private.data["context"], Map.put(opts, "exclude_id", private.id)}
342
343 public_input = {public.data["context"], Map.put(opts, "exclude_id", public.id)}
344
345 Benchee.run(
346 %{
347 "fetch context" => fn {context, opts} ->
348 ActivityPub.fetch_activities_for_context(context, opts)
349 end
350 },
351 inputs: %{
352 "Private long thread" => private_input,
353 "Public long thread" => public_input
354 },
355 formatters: formatters()
356 )
357 end
358
359 defp render_timelines(user) do
360 opts = opts_for_home_timeline(user)
361
362 recipients = [user.ap_id | User.following(user)]
363
364 home_activities = ActivityPub.fetch_activities(recipients, opts) |> Enum.reverse()
365
366 recipients = [user.ap_id]
367
368 opts = opts_for_direct_timeline(user)
369
370 direct_activities =
371 recipients
372 |> ActivityPub.fetch_activities_query(opts)
373 |> Pagination.fetch_paginated(opts)
374
375 opts = opts_for_public_timeline(user)
376
377 public_activities = ActivityPub.fetch_public_activities(opts)
378
379 opts = opts_for_public_timeline(user, :tag)
380
381 tag_activities = ActivityPub.fetch_public_activities(opts)
382
383 opts = opts_for_notifications()
384
385 notifications = MastodonAPI.get_notifications(user, opts)
386
387 favourites = ActivityPub.fetch_favourites(user)
388
389 output_relationships =
390 !!Pleroma.Config.get([:extensions, :output_relationships_in_statuses_by_default])
391
392 Benchee.run(
393 %{
394 "Rendering home timeline" => fn ->
395 StatusView.render("index.json", %{
396 activities: home_activities,
397 for: user,
398 as: :activity,
399 skip_relationships: !output_relationships
400 })
401 end,
402 "Rendering direct timeline" => fn ->
403 StatusView.render("index.json", %{
404 activities: direct_activities,
405 for: user,
406 as: :activity,
407 skip_relationships: !output_relationships
408 })
409 end,
410 "Rendering public timeline" => fn ->
411 StatusView.render("index.json", %{
412 activities: public_activities,
413 for: user,
414 as: :activity,
415 skip_relationships: !output_relationships
416 })
417 end,
418 "Rendering tag timeline" => fn ->
419 StatusView.render("index.json", %{
420 activities: tag_activities,
421 for: user,
422 as: :activity,
423 skip_relationships: !output_relationships
424 })
425 end,
426 "Rendering notifications" => fn ->
427 Pleroma.Web.MastodonAPI.NotificationView.render("index.json", %{
428 notifications: notifications,
429 for: user,
430 skip_relationships: !output_relationships
431 })
432 end,
433 "Rendering favourites timeline" => fn ->
434 StatusView.render("index.json", %{
435 activities: favourites,
436 for: user,
437 as: :activity,
438 skip_relationships: !output_relationships
439 })
440 end
441 },
442 formatters: formatters()
443 )
444 end
445
446 defp render_long_thread(user) do
447 %{public_thread: public, private_thread: private} =
448 Agent.get(:benchmark_state, fn state -> state end)
449
450 opts = %{for: user}
451 public_activity = Activity.get_by_id_with_object(public.id)
452 private_activity = Activity.get_by_id_with_object(private.id)
453
454 Benchee.run(
455 %{
456 "render" => fn opts ->
457 StatusView.render("show.json", opts)
458 end
459 },
460 inputs: %{
461 "Public root" => Map.put(opts, :activity, public_activity),
462 "Private root" => Map.put(opts, :activity, private_activity)
463 },
464 formatters: formatters()
465 )
466
467 fetch_opts = opts_for_long_thread(user)
468
469 public_context =
470 ActivityPub.fetch_activities_for_context(
471 public.data["context"],
472 Map.put(fetch_opts, "exclude_id", public.id)
473 )
474
475 private_context =
476 ActivityPub.fetch_activities_for_context(
477 private.data["context"],
478 Map.put(fetch_opts, "exclude_id", private.id)
479 )
480
481 Benchee.run(
482 %{
483 "render" => fn opts ->
484 StatusView.render("context.json", opts)
485 end
486 },
487 inputs: %{
488 "Public context" => %{user: user, activity: public_activity, activities: public_context},
489 "Private context" => %{
490 user: user,
491 activity: private_activity,
492 activities: private_context
493 }
494 },
495 formatters: formatters()
496 )
497 end
498
499 def query_replies(user) do
500 public_params = %{
501 "type" => ["Create", "Announce"],
502 "local_only" => false,
503 "blocking_user" => user,
504 "muting_user" => user,
505 "count" => 20
506 }
507
508 Benchee.run(%{
509 "Public timeline without reply filtering" => fn ->
510 ActivityPub.fetch_public_activities(public_params)
511 end,
512 "Public timeline with reply filtering - following" => fn ->
513 public_params
514 |> Map.put("reply_visibility", "following")
515 |> Map.put("user", user)
516 |> ActivityPub.fetch_public_activities()
517 end,
518 "Public timeline with reply filtering - self" => fn ->
519 public_params
520 |> Map.put("reply_visibility", "self")
521 |> Map.put("user", user)
522 |> ActivityPub.fetch_public_activities()
523 end
524 })
525
526 private_params = %{
527 "type" => ["Create", "Announce"],
528 "blocking_user" => user,
529 "muting_user" => user,
530 "user" => user,
531 "count" => 20
532 }
533
534 recipients = [user.ap_id | User.following(user)]
535
536 Benchee.run(%{
537 "Home timeline without reply filtering" => fn ->
538 ActivityPub.fetch_activities(recipients, private_params)
539 end,
540 "Home timeline with reply filtering - following" => fn ->
541 private_params = Map.put(private_params, "reply_visibility", "following")
542
543 ActivityPub.fetch_activities(recipients, private_params)
544 end,
545 "Home timeline with reply filtering - self" => fn ->
546 private_params = Map.put(private_params, "reply_visibility", "self")
547 ActivityPub.fetch_activities(recipients, private_params)
548 end
549 })
550 end
551 end