faa5132ae59c16067b18a59c9ef93387a6235b53
[akkoma] / test / support / factory.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Factory do
6 use ExMachina.Ecto, repo: Pleroma.Repo
7 alias Pleroma.User
8
9 def participation_factory do
10 conversation = insert(:conversation)
11 user = insert(:user)
12
13 %Pleroma.Conversation.Participation{
14 conversation: conversation,
15 user: user,
16 read: false
17 }
18 end
19
20 def conversation_factory do
21 %Pleroma.Conversation{
22 ap_id: sequence(:ap_id, &"https://some_conversation/#{&1}")
23 }
24 end
25
26 def user_factory do
27 user = %User{
28 name: sequence(:name, &"Test テスト User #{&1}"),
29 email: sequence(:email, &"user#{&1}@example.com"),
30 nickname: sequence(:nickname, &"nick#{&1}"),
31 password_hash: Comeonin.Pbkdf2.hashpwsalt("test"),
32 bio: sequence(:bio, &"Tester Number #{&1}"),
33 info: %{},
34 last_digest_emailed_at: NaiveDateTime.utc_now()
35 }
36
37 %{
38 user
39 | ap_id: User.ap_id(user),
40 follower_address: User.ap_followers(user),
41 following: [User.ap_id(user)]
42 }
43 end
44
45 def note_factory(attrs \\ %{}) do
46 text = sequence(:text, &"This is :moominmamma: note #{&1}")
47
48 user = attrs[:user] || insert(:user)
49
50 data = %{
51 "type" => "Note",
52 "content" => text,
53 "id" => Pleroma.Web.ActivityPub.Utils.generate_object_id(),
54 "actor" => user.ap_id,
55 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
56 "published" => DateTime.utc_now() |> DateTime.to_iso8601(),
57 "likes" => [],
58 "like_count" => 0,
59 "context" => "2hu",
60 "summary" => "2hu",
61 "tag" => ["2hu"],
62 "emoji" => %{
63 "2hu" => "corndog.png"
64 }
65 }
66
67 %Pleroma.Object{
68 data: merge_attributes(data, Map.get(attrs, :data, %{}))
69 }
70 end
71
72 def direct_note_factory do
73 user2 = insert(:user)
74
75 %Pleroma.Object{data: data} = note_factory()
76 %Pleroma.Object{data: Map.merge(data, %{"to" => [user2.ap_id]})}
77 end
78
79 def article_factory do
80 note_factory()
81 |> Map.put("type", "Article")
82 end
83
84 def tombstone_factory do
85 data = %{
86 "type" => "Tombstone",
87 "id" => Pleroma.Web.ActivityPub.Utils.generate_object_id(),
88 "formerType" => "Note",
89 "deleted" => DateTime.utc_now() |> DateTime.to_iso8601()
90 }
91
92 %Pleroma.Object{
93 data: data
94 }
95 end
96
97 def direct_note_activity_factory do
98 dm = insert(:direct_note)
99
100 data = %{
101 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
102 "type" => "Create",
103 "actor" => dm.data["actor"],
104 "to" => dm.data["to"],
105 "object" => dm.data,
106 "published" => DateTime.utc_now() |> DateTime.to_iso8601(),
107 "context" => dm.data["context"]
108 }
109
110 %Pleroma.Activity{
111 data: data,
112 actor: data["actor"],
113 recipients: data["to"]
114 }
115 end
116
117 def note_activity_factory(attrs \\ %{}) do
118 user = attrs[:user] || insert(:user)
119 note = attrs[:note] || insert(:note, user: user)
120
121 data = %{
122 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
123 "type" => "Create",
124 "actor" => note.data["actor"],
125 "to" => note.data["to"],
126 "object" => note.data,
127 "published" => DateTime.utc_now() |> DateTime.to_iso8601(),
128 "context" => note.data["context"]
129 }
130
131 %Pleroma.Activity{
132 data: data,
133 actor: data["actor"],
134 recipients: data["to"]
135 }
136 end
137
138 def article_activity_factory do
139 article = insert(:article)
140
141 data = %{
142 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
143 "type" => "Create",
144 "actor" => article.data["actor"],
145 "to" => article.data["to"],
146 "object" => article.data,
147 "published" => DateTime.utc_now() |> DateTime.to_iso8601(),
148 "context" => article.data["context"]
149 }
150
151 %Pleroma.Activity{
152 data: data,
153 actor: data["actor"],
154 recipients: data["to"]
155 }
156 end
157
158 def announce_activity_factory(attrs \\ %{}) do
159 note_activity = attrs[:note_activity] || insert(:note_activity)
160 user = attrs[:user] || insert(:user)
161
162 data = %{
163 "type" => "Announce",
164 "actor" => note_activity.actor,
165 "object" => note_activity.data["id"],
166 "to" => [user.follower_address, note_activity.data["actor"]],
167 "cc" => ["https://www.w3.org/ns/activitystreams#Public"],
168 "context" => note_activity.data["context"]
169 }
170
171 %Pleroma.Activity{
172 data: data,
173 actor: user.ap_id,
174 recipients: data["to"]
175 }
176 end
177
178 def like_activity_factory do
179 note_activity = insert(:note_activity)
180 user = insert(:user)
181
182 data = %{
183 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
184 "actor" => user.ap_id,
185 "type" => "Like",
186 "object" => note_activity.data["object"]["id"],
187 "published_at" => DateTime.utc_now() |> DateTime.to_iso8601()
188 }
189
190 %Pleroma.Activity{
191 data: data
192 }
193 end
194
195 def follow_activity_factory do
196 follower = insert(:user)
197 followed = insert(:user)
198
199 data = %{
200 "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(),
201 "actor" => follower.ap_id,
202 "type" => "Follow",
203 "object" => followed.ap_id,
204 "published_at" => DateTime.utc_now() |> DateTime.to_iso8601()
205 }
206
207 %Pleroma.Activity{
208 data: data,
209 actor: follower.ap_id
210 }
211 end
212
213 def websub_subscription_factory do
214 %Pleroma.Web.Websub.WebsubServerSubscription{
215 topic: "http://example.org",
216 callback: "http://example.org/callback",
217 secret: "here's a secret",
218 valid_until: NaiveDateTime.add(NaiveDateTime.utc_now(), 100),
219 state: "requested"
220 }
221 end
222
223 def websub_client_subscription_factory do
224 %Pleroma.Web.Websub.WebsubClientSubscription{
225 topic: "http://example.org",
226 secret: "here's a secret",
227 valid_until: nil,
228 state: "requested",
229 subscribers: []
230 }
231 end
232
233 def oauth_app_factory do
234 %Pleroma.Web.OAuth.App{
235 client_name: "Some client",
236 redirect_uris: "https://example.com/callback",
237 scopes: ["read", "write", "follow", "push"],
238 website: "https://example.com",
239 client_id: Ecto.UUID.generate(),
240 client_secret: "aaa;/&bbb"
241 }
242 end
243
244 def instance_factory do
245 %Pleroma.Instances.Instance{
246 host: "domain.com",
247 unreachable_since: nil
248 }
249 end
250
251 def oauth_token_factory do
252 oauth_app = insert(:oauth_app)
253
254 %Pleroma.Web.OAuth.Token{
255 token: :crypto.strong_rand_bytes(32) |> Base.url_encode64(),
256 refresh_token: :crypto.strong_rand_bytes(32) |> Base.url_encode64(),
257 user: build(:user),
258 app_id: oauth_app.id,
259 valid_until: NaiveDateTime.add(NaiveDateTime.utc_now(), 60 * 10)
260 }
261 end
262
263 def oauth_authorization_factory do
264 %Pleroma.Web.OAuth.Authorization{
265 token: :crypto.strong_rand_bytes(32) |> Base.url_encode64(padding: false),
266 scopes: ["read", "write", "follow", "push"],
267 valid_until: NaiveDateTime.add(NaiveDateTime.utc_now(), 60 * 10),
268 user: build(:user),
269 app: build(:oauth_app)
270 }
271 end
272
273 def push_subscription_factory do
274 %Pleroma.Web.Push.Subscription{
275 user: build(:user),
276 token: build(:oauth_token),
277 endpoint: "https://example.com/example/1234",
278 key_auth: "8eDyX_uCN0XRhSbY5hs7Hg==",
279 key_p256dh:
280 "BCIWgsnyXDv1VkhqL2P7YRBvdeuDnlwAPT2guNhdIoW3IP7GmHh1SMKPLxRf7x8vJy6ZFK3ol2ohgn_-0yP7QQA=",
281 data: %{}
282 }
283 end
284
285 def notification_factory do
286 %Pleroma.Notification{
287 user: build(:user)
288 }
289 end
290
291 def scheduled_activity_factory do
292 %Pleroma.ScheduledActivity{
293 user: build(:user),
294 scheduled_at: NaiveDateTime.add(NaiveDateTime.utc_now(), :timer.minutes(60), :millisecond),
295 params: build(:note) |> Map.from_struct() |> Map.get(:data)
296 }
297 end
298
299 def registration_factory do
300 user = insert(:user)
301
302 %Pleroma.Registration{
303 user: user,
304 provider: "twitter",
305 uid: "171799000",
306 info: %{
307 "name" => "John Doe",
308 "email" => "john@doe.com",
309 "nickname" => "johndoe",
310 "description" => "My bio"
311 }
312 }
313 end
314 end