1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Factory do
6 use ExMachina.Ecto, repo: Pleroma.Repo
8 require Pleroma.Constants
13 def participation_factory do
14 conversation = insert(:conversation)
17 %Pleroma.Conversation.Participation{
18 conversation: conversation,
24 def conversation_factory do
25 %Pleroma.Conversation{
26 ap_id: sequence(:ap_id, &"https://some_conversation/#{&1}")
30 def user_factory(attrs \\ %{}) do
32 name: sequence(:name, &"Test テスト User #{&1}"),
33 email: sequence(:email, &"user#{&1}@example.com"),
34 nickname: sequence(:nickname, &"nick#{&1}"),
35 password_hash: Pleroma.Password.Pbkdf2.hash_pwd_salt("test"),
36 bio: sequence(:bio, &"Tester Number #{&1}"),
37 is_discoverable: true,
38 last_digest_emailed_at: NaiveDateTime.utc_now(),
39 last_refreshed_at: NaiveDateTime.utc_now(),
40 notification_settings: %Pleroma.User.NotificationSetting{},
41 multi_factor_authentication_settings: %Pleroma.MFA.Settings{},
46 if attrs[:local] == false do
47 base_domain = attrs[:domain] || Enum.random(["domain1.com", "domain2.com", "domain3.com"])
49 ap_id = "https://#{base_domain}/users/#{user.nickname}"
53 follower_address: ap_id <> "/followers",
54 following_address: ap_id <> "/following",
55 featured_address: ap_id <> "/collections/featured"
59 ap_id: User.ap_id(user),
60 follower_address: User.ap_followers(user),
61 following_address: User.ap_following(user),
62 featured_address: User.ap_featured_collection(user)
66 attrs = Map.delete(attrs, :domain)
69 |> Map.put(:raw_bio, user.bio)
71 |> merge_attributes(attrs)
74 def user_relationship_factory(attrs \\ %{}) do
75 source = attrs[:source] || insert(:user)
76 target = attrs[:target] || insert(:user)
77 relationship_type = attrs[:relationship_type] || :block
79 %Pleroma.UserRelationship{
82 relationship_type: relationship_type
86 def note_factory(attrs \\ %{}) do
87 text = sequence(:text, &"This is :moominmamma: note #{&1}")
89 user = attrs[:user] || insert(:user)
95 "id" => Pleroma.Web.ActivityPub.Utils.generate_object_id(),
96 "actor" => user.ap_id,
97 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
98 "published" => DateTime.utc_now() |> DateTime.to_iso8601(),
105 "2hu" => "corndog.png"
110 data: merge_attributes(data, Map.get(attrs, :data, %{}))
114 def attachment_note_factory(attrs \\ %{}) do
115 user = attrs[:user] || insert(:user)
116 {length, attrs} = Map.pop(attrs, :length, 1)
120 Stream.repeatedly(fn -> attachment_data(user.ap_id, attrs[:href]) end)
124 build(:note, Map.put(attrs, :data, data))
127 defp attachment_data(ap_id, href) do
128 href = href || sequence(:href, &"#{Pleroma.Web.Endpoint.url()}/media/#{&1}.jpg")
135 "mediaType" => "image/jpeg"
138 "name" => "some name",
139 "type" => "Document",
141 "mediaType" => "image/jpeg"
145 def audio_factory(attrs \\ %{}) do
146 text = sequence(:text, &"lain radio episode #{&1}")
148 user = attrs[:user] || insert(:user)
152 "id" => Pleroma.Web.ActivityPub.Utils.generate_object_id(),
155 "album" => "lain radio",
156 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
157 "published" => DateTime.utc_now() |> DateTime.to_iso8601(),
158 "actor" => user.ap_id,
163 data: merge_attributes(data, Map.get(attrs, :data, %{}))
167 def listen_factory do
168 audio = insert(:audio)
171 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
173 "actor" => audio.data["actor"],
174 "to" => audio.data["to"],
175 "object" => audio.data,
176 "published" => audio.data["published"]
181 actor: data["actor"],
182 recipients: data["to"]
186 def direct_note_factory do
187 user2 = insert(:user)
189 %Pleroma.Object{data: data} = note_factory()
190 %Pleroma.Object{data: Map.merge(data, %{"to" => [user2.ap_id]})}
193 def article_factory do
194 %Pleroma.Object{data: data} = note_factory()
195 %Pleroma.Object{data: Map.merge(data, %{"type" => "Article"})}
198 def tombstone_factory do
200 "type" => "Tombstone",
201 "id" => Pleroma.Web.ActivityPub.Utils.generate_object_id(),
202 "formerType" => "Note",
203 "deleted" => DateTime.utc_now() |> DateTime.to_iso8601()
211 def direct_note_activity_factory do
212 dm = insert(:direct_note)
215 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
217 "actor" => dm.data["actor"],
218 "to" => dm.data["to"],
220 "published" => DateTime.utc_now() |> DateTime.to_iso8601(),
221 "context" => dm.data["context"]
226 actor: data["actor"],
227 recipients: data["to"]
231 def add_activity_factory(attrs \\ %{}) do
232 featured_collection_activity(attrs, "Add")
235 def remove_activity_factor(attrs \\ %{}) do
236 featured_collection_activity(attrs, "Remove")
239 defp featured_collection_activity(attrs, type) do
240 user = attrs[:user] || insert(:user)
241 note = attrs[:note] || insert(:note, user: user)
245 |> Map.get(:data_attrs, %{})
246 |> Map.put(:type, type)
248 attrs = Map.drop(attrs, [:user, :note, :data_attrs])
252 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
253 "target" => user.featured_address,
254 "object" => note.data["object"],
255 "actor" => note.data["actor"],
257 "to" => [Pleroma.Constants.as_public()],
258 "cc" => [user.follower_address]
260 |> Map.merge(data_attrs)
264 actor: data["actor"],
265 recipients: data["to"]
270 def note_activity_factory(attrs \\ %{}) do
271 user = attrs[:user] || insert(:user)
272 note = attrs[:note] || insert(:note, user: user)
274 data_attrs = attrs[:data_attrs] || %{}
275 attrs = Map.drop(attrs, [:user, :note, :data_attrs])
279 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
281 "actor" => note.data["actor"],
282 "to" => note.data["to"],
283 "object" => note.data["id"],
284 "published" => DateTime.utc_now() |> DateTime.to_iso8601(),
285 "context" => note.data["context"]
287 |> Map.merge(data_attrs)
291 actor: data["actor"],
292 recipients: data["to"]
297 def article_activity_factory do
298 article = insert(:article)
301 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
303 "actor" => article.data["actor"],
304 "to" => article.data["to"],
305 "object" => article.data,
306 "published" => DateTime.utc_now() |> DateTime.to_iso8601(),
307 "context" => article.data["context"]
312 actor: data["actor"],
313 recipients: data["to"]
317 def announce_activity_factory(attrs \\ %{}) do
318 note_activity = attrs[:note_activity] || insert(:note_activity)
319 user = attrs[:user] || insert(:user)
322 "type" => "Announce",
323 "actor" => note_activity.actor,
324 "object" => note_activity.data["id"],
325 "to" => [user.follower_address, note_activity.data["actor"]],
326 "cc" => ["https://www.w3.org/ns/activitystreams#Public"],
327 "context" => note_activity.data["context"]
333 recipients: data["to"]
337 def like_activity_factory(attrs \\ %{}) do
338 note_activity = attrs[:note_activity] || insert(:note_activity)
339 object = Object.normalize(note_activity, fetch: false)
344 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
345 "actor" => user.ap_id,
347 "object" => object.data["id"],
348 "published_at" => DateTime.utc_now() |> DateTime.to_iso8601()
350 |> Map.merge(attrs[:data_attrs] || %{})
357 def follow_activity_factory do
358 follower = insert(:user)
359 followed = insert(:user)
362 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
363 "actor" => follower.ap_id,
365 "object" => followed.ap_id,
366 "published_at" => DateTime.utc_now() |> DateTime.to_iso8601()
371 actor: follower.ap_id
375 def report_activity_factory(attrs \\ %{}) do
376 user = attrs[:user] || insert(:user)
377 activity = attrs[:activity] || insert(:note_activity)
378 state = attrs[:state] || "open"
381 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
382 "actor" => user.ap_id,
384 "object" => [activity.actor, activity.data["id"]],
385 "published" => DateTime.utc_now() |> DateTime.to_iso8601(),
387 "cc" => [activity.actor],
388 "context" => activity.data["context"],
394 actor: data["actor"],
395 recipients: data["to"] ++ data["cc"]
399 def oauth_app_factory do
400 %Pleroma.Web.OAuth.App{
401 client_name: sequence(:client_name, &"Some client #{&1}"),
402 redirect_uris: "https://example.com/callback",
403 scopes: ["read", "write", "follow", "push", "admin"],
404 website: "https://example.com",
405 client_id: Ecto.UUID.generate(),
406 client_secret: "aaa;/&bbb"
410 def instance_factory do
411 %Pleroma.Instances.Instance{
413 unreachable_since: nil
417 def oauth_token_factory(attrs \\ %{}) do
418 scopes = Map.get(attrs, :scopes, ["read"])
419 oauth_app = Map.get_lazy(attrs, :app, fn -> insert(:oauth_app, scopes: scopes) end)
420 user = Map.get_lazy(attrs, :user, fn -> build(:user) end)
423 Map.get(attrs, :valid_until, NaiveDateTime.add(NaiveDateTime.utc_now(), 60 * 10))
425 %Pleroma.Web.OAuth.Token{
426 token: :crypto.strong_rand_bytes(32) |> Base.url_encode64(),
427 refresh_token: :crypto.strong_rand_bytes(32) |> Base.url_encode64(),
431 valid_until: valid_until
435 def oauth_admin_token_factory(attrs \\ %{}) do
436 user = Map.get_lazy(attrs, :user, fn -> build(:user, is_admin: true) end)
440 |> Map.get(:scopes, ["admin"])
441 |> Kernel.++(["admin"])
444 attrs = Map.merge(attrs, %{user: user, scopes: scopes})
445 oauth_token_factory(attrs)
448 def oauth_authorization_factory do
449 %Pleroma.Web.OAuth.Authorization{
450 token: :crypto.strong_rand_bytes(32) |> Base.url_encode64(padding: false),
451 scopes: ["read", "write", "follow", "push"],
452 valid_until: NaiveDateTime.add(NaiveDateTime.utc_now(), 60 * 10),
454 app: build(:oauth_app)
458 def push_subscription_factory do
459 %Pleroma.Web.Push.Subscription{
461 token: build(:oauth_token),
462 endpoint: "https://example.com/example/1234",
463 key_auth: "8eDyX_uCN0XRhSbY5hs7Hg==",
465 "BCIWgsnyXDv1VkhqL2P7YRBvdeuDnlwAPT2guNhdIoW3IP7GmHh1SMKPLxRf7x8vJy6ZFK3ol2ohgn_-0yP7QQA=",
470 def notification_factory do
471 %Pleroma.Notification{
476 def scheduled_activity_factory do
477 %Pleroma.ScheduledActivity{
479 scheduled_at: NaiveDateTime.add(NaiveDateTime.utc_now(), :timer.minutes(60), :millisecond),
480 params: build(:note) |> Map.from_struct() |> Map.get(:data)
484 def registration_factory do
487 %Pleroma.Registration{
492 "name" => "John Doe",
493 "email" => "john@doe.com",
494 "nickname" => "johndoe",
495 "description" => "My bio"
500 def config_factory(attrs \\ %{}) do
502 key: sequence(:key, &String.to_atom("some_key_#{&1}")),
507 &%{another_key: "#{&1}somevalue", another: "#{&1}somevalue"}
510 |> merge_attributes(attrs)
513 def marker_factory do
516 timeline: "notifications",
522 def mfa_token_factory do
524 token: :crypto.strong_rand_bytes(32) |> Base.url_encode64(padding: false),
525 authorization: build(:oauth_authorization),
526 valid_until: NaiveDateTime.add(NaiveDateTime.utc_now(), 60 * 10),
531 def filter_factory do
534 filter_id: sequence(:filter_id, & &1),