649fe8f6d40d6c01909d047f3b49ba60e0e95b7e
[akkoma] / lib / pleroma / user.ex
1 defmodule Pleroma.User do
2 use Ecto.Schema
3
4 import Ecto.{Changeset, Query}
5 alias Pleroma.{Repo, User, Object, Web, Activity, Notification}
6 alias Comeonin.Pbkdf2
7 alias Pleroma.Web.{OStatus, Websub}
8 alias Pleroma.Web.ActivityPub.{Utils, ActivityPub}
9
10 schema "users" do
11 field(:bio, :string)
12 field(:email, :string)
13 field(:name, :string)
14 field(:nickname, :string)
15 field(:password_hash, :string)
16 field(:password, :string, virtual: true)
17 field(:password_confirmation, :string, virtual: true)
18 field(:following, {:array, :string}, default: [])
19 field(:ap_id, :string)
20 field(:avatar, :map)
21 field(:local, :boolean, default: true)
22 field(:info, :map, default: %{})
23 field(:follower_address, :string)
24 field(:search_distance, :float, virtual: true)
25 has_many(:notifications, Notification)
26
27 timestamps()
28 end
29
30 def avatar_url(user) do
31 case user.avatar do
32 %{"url" => [%{"href" => href} | _]} -> href
33 _ -> "#{Web.base_url()}/images/avi.png"
34 end
35 end
36
37 def banner_url(user) do
38 case user.info["banner"] do
39 %{"url" => [%{"href" => href} | _]} -> href
40 _ -> "#{Web.base_url()}/images/banner.png"
41 end
42 end
43
44 def ap_id(%User{nickname: nickname}) do
45 "#{Web.base_url()}/users/#{nickname}"
46 end
47
48 def ap_followers(%User{} = user) do
49 "#{ap_id(user)}/followers"
50 end
51
52 def follow_changeset(struct, params \\ %{}) do
53 struct
54 |> cast(params, [:following])
55 |> validate_required([:following])
56 end
57
58 def info_changeset(struct, params \\ %{}) do
59 struct
60 |> cast(params, [:info])
61 |> validate_required([:info])
62 end
63
64 def user_info(%User{} = user) do
65 oneself = if user.local, do: 1, else: 0
66
67 %{
68 following_count: length(user.following) - oneself,
69 note_count: user.info["note_count"] || 0,
70 follower_count: user.info["follower_count"] || 0,
71 locked: user.info["locked"] || false
72 }
73 end
74
75 @email_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])?)*$/
76 def remote_user_creation(params) do
77 changes =
78 %User{}
79 |> cast(params, [:bio, :name, :ap_id, :nickname, :info, :avatar])
80 |> validate_required([:name, :ap_id, :nickname])
81 |> unique_constraint(:nickname)
82 |> validate_format(:nickname, @email_regex)
83 |> validate_length(:bio, max: 5000)
84 |> validate_length(:name, max: 100)
85 |> put_change(:local, false)
86
87 if changes.valid? do
88 case changes.changes[:info]["source_data"] do
89 %{"followers" => followers} ->
90 changes
91 |> put_change(:follower_address, followers)
92
93 _ ->
94 followers = User.ap_followers(%User{nickname: changes.changes[:nickname]})
95
96 changes
97 |> put_change(:follower_address, followers)
98 end
99 else
100 changes
101 end
102 end
103
104 def update_changeset(struct, params \\ %{}) do
105 struct
106 |> cast(params, [:bio, :name])
107 |> unique_constraint(:nickname)
108 |> validate_format(:nickname, ~r/^[a-zA-Z\d]+$/)
109 |> validate_length(:bio, max: 5000)
110 |> validate_length(:name, min: 1, max: 100)
111 end
112
113 def upgrade_changeset(struct, params \\ %{}) do
114 struct
115 |> cast(params, [:bio, :name, :info, :follower_address, :avatar])
116 |> unique_constraint(:nickname)
117 |> validate_format(:nickname, ~r/^[a-zA-Z\d]+$/)
118 |> validate_length(:bio, max: 5000)
119 |> validate_length(:name, max: 100)
120 end
121
122 def password_update_changeset(struct, params) do
123 changeset =
124 struct
125 |> cast(params, [:password, :password_confirmation])
126 |> validate_required([:password, :password_confirmation])
127 |> validate_confirmation(:password)
128
129 if changeset.valid? do
130 hashed = Pbkdf2.hashpwsalt(changeset.changes[:password])
131
132 changeset
133 |> put_change(:password_hash, hashed)
134 else
135 changeset
136 end
137 end
138
139 def reset_password(user, data) do
140 update_and_set_cache(password_update_changeset(user, data))
141 end
142
143 def register_changeset(struct, params \\ %{}) do
144 changeset =
145 struct
146 |> cast(params, [:bio, :email, :name, :nickname, :password, :password_confirmation])
147 |> validate_required([:email, :name, :nickname, :password, :password_confirmation])
148 |> validate_confirmation(:password)
149 |> unique_constraint(:email)
150 |> unique_constraint(:nickname)
151 |> validate_format(:nickname, ~r/^[a-zA-Z\d]+$/)
152 |> validate_format(:email, @email_regex)
153 |> validate_length(:bio, max: 1000)
154 |> validate_length(:name, min: 1, max: 100)
155
156 if changeset.valid? do
157 hashed = Pbkdf2.hashpwsalt(changeset.changes[:password])
158 ap_id = User.ap_id(%User{nickname: changeset.changes[:nickname]})
159 followers = User.ap_followers(%User{nickname: changeset.changes[:nickname]})
160
161 changeset
162 |> put_change(:password_hash, hashed)
163 |> put_change(:ap_id, ap_id)
164 |> put_change(:following, [followers])
165 |> put_change(:follower_address, followers)
166 else
167 changeset
168 end
169 end
170
171 @user_config Application.get_env(:pleroma, :user)
172 @deny_follow_blocked Keyword.get(@ap_config, :deny_follow_blocked)
173
174 def maybe_direct_follow(%User{} = follower, %User{info: info} = followed) do
175 user_info = user_info(followed)
176
177 should_direct_follow =
178 cond do
179 # if the account is locked, don't pre-create the relationship
180 user_info[:locked] == true ->
181 false
182
183 # if the users are blocking each other, we shouldn't even be here, but check for it anyway
184 deny_follow_blocked and (User.blocks?(follower, followed) or User.blocks?(followed, follower)) ->
185 false
186
187 # if OStatus, then there is no three-way handshake to follow
188 User.ap_enabled?(followed) != true ->
189 true
190
191 # if there are no other reasons not to, just pre-create the relationship
192 true ->
193 true
194 end
195
196 if should_direct_follow do
197 follow(follower, followed)
198 else
199 {:ok, follower}
200 end
201 end
202
203 @user_config Application.get_env(:pleroma, :user)
204 @deny_follow_blocked Keyword.get(@ap_config, :deny_follow_blocked)
205
206 def follow(%User{} = follower, %User{info: info} = followed) do
207 ap_followers = followed.follower_address
208
209 cond do
210 following?(follower, followed) or info["deactivated"] ->
211 {:error, "Could not follow user: #{followed.nickname} is already on your list."}
212
213 deny_follow_blocked and blocks?(followed, follower) ->
214 {:error, "Could not follow user: #{followed.nickname} blocked you."}
215
216 true ->
217 if !followed.local && follower.local && !ap_enabled?(followed) do
218 Websub.subscribe(follower, followed)
219 end
220
221 following =
222 [ap_followers | follower.following]
223 |> Enum.uniq()
224
225 follower =
226 follower
227 |> follow_changeset(%{following: following})
228 |> update_and_set_cache
229
230 {:ok, _} = update_follower_count(followed)
231
232 follower
233 end
234 end
235
236 def unfollow(%User{} = follower, %User{} = followed) do
237 ap_followers = followed.follower_address
238
239 if following?(follower, followed) and follower.ap_id != followed.ap_id do
240 following =
241 follower.following
242 |> List.delete(ap_followers)
243
244 {:ok, follower} =
245 follower
246 |> follow_changeset(%{following: following})
247 |> update_and_set_cache
248
249 {:ok, followed} = update_follower_count(followed)
250
251 {:ok, follower, Utils.fetch_latest_follow(follower, followed)}
252 else
253 {:error, "Not subscribed!"}
254 end
255 end
256
257 def following?(%User{} = follower, %User{} = followed) do
258 Enum.member?(follower.following, followed.follower_address)
259 end
260
261 def get_by_ap_id(ap_id) do
262 Repo.get_by(User, ap_id: ap_id)
263 end
264
265 def update_and_set_cache(changeset) do
266 with {:ok, user} <- Repo.update(changeset) do
267 Cachex.put(:user_cache, "ap_id:#{user.ap_id}", user)
268 Cachex.put(:user_cache, "nickname:#{user.nickname}", user)
269 Cachex.put(:user_cache, "user_info:#{user.id}", user_info(user))
270 {:ok, user}
271 else
272 e -> e
273 end
274 end
275
276 def invalidate_cache(user) do
277 Cachex.del(:user_cache, "ap_id:#{user.ap_id}")
278 Cachex.del(:user_cache, "nickname:#{user.nickname}")
279 end
280
281 def get_cached_by_ap_id(ap_id) do
282 key = "ap_id:#{ap_id}"
283 Cachex.fetch!(:user_cache, key, fn _ -> get_by_ap_id(ap_id) end)
284 end
285
286 def get_cached_by_nickname(nickname) do
287 key = "nickname:#{nickname}"
288 Cachex.fetch!(:user_cache, key, fn _ -> get_or_fetch_by_nickname(nickname) end)
289 end
290
291 def get_by_nickname(nickname) do
292 Repo.get_by(User, nickname: nickname)
293 end
294
295 def get_by_nickname_or_email(nickname_or_email) do
296 case user = Repo.get_by(User, nickname: nickname_or_email) do
297 %User{} -> user
298 nil -> Repo.get_by(User, email: nickname_or_email)
299 end
300 end
301
302 def get_cached_user_info(user) do
303 key = "user_info:#{user.id}"
304 Cachex.fetch!(:user_cache, key, fn _ -> user_info(user) end)
305 end
306
307 def fetch_by_nickname(nickname) do
308 ap_try = ActivityPub.make_user_from_nickname(nickname)
309
310 case ap_try do
311 {:ok, user} -> {:ok, user}
312 _ -> OStatus.make_user(nickname)
313 end
314 end
315
316 def get_or_fetch_by_nickname(nickname) do
317 with %User{} = user <- get_by_nickname(nickname) do
318 user
319 else
320 _e ->
321 with [_nick, _domain] <- String.split(nickname, "@"),
322 {:ok, user} <- fetch_by_nickname(nickname) do
323 user
324 else
325 _e -> nil
326 end
327 end
328 end
329
330 def get_followers_query(%User{id: id, follower_address: follower_address}) do
331 from(
332 u in User,
333 where: fragment("? <@ ?", ^[follower_address], u.following),
334 where: u.id != ^id
335 )
336 end
337
338 def get_followers(user) do
339 q = get_followers_query(user)
340
341 {:ok, Repo.all(q)}
342 end
343
344 def get_friends_query(%User{id: id, following: following}) do
345 from(
346 u in User,
347 where: u.follower_address in ^following,
348 where: u.id != ^id
349 )
350 end
351
352 def get_friends(user) do
353 q = get_friends_query(user)
354
355 {:ok, Repo.all(q)}
356 end
357
358 def increase_note_count(%User{} = user) do
359 note_count = (user.info["note_count"] || 0) + 1
360 new_info = Map.put(user.info, "note_count", note_count)
361
362 cs = info_changeset(user, %{info: new_info})
363
364 update_and_set_cache(cs)
365 end
366
367 def decrease_note_count(%User{} = user) do
368 note_count = user.info["note_count"] || 0
369 note_count = if note_count <= 0, do: 0, else: note_count - 1
370 new_info = Map.put(user.info, "note_count", note_count)
371
372 cs = info_changeset(user, %{info: new_info})
373
374 update_and_set_cache(cs)
375 end
376
377 def update_note_count(%User{} = user) do
378 note_count_query =
379 from(
380 a in Object,
381 where: fragment("?->>'actor' = ? and ?->>'type' = 'Note'", a.data, ^user.ap_id, a.data),
382 select: count(a.id)
383 )
384
385 note_count = Repo.one(note_count_query)
386
387 new_info = Map.put(user.info, "note_count", note_count)
388
389 cs = info_changeset(user, %{info: new_info})
390
391 update_and_set_cache(cs)
392 end
393
394 def update_follower_count(%User{} = user) do
395 follower_count_query =
396 from(
397 u in User,
398 where: ^user.follower_address in u.following,
399 where: u.id != ^user.id,
400 select: count(u.id)
401 )
402
403 follower_count = Repo.one(follower_count_query)
404
405 new_info = Map.put(user.info, "follower_count", follower_count)
406
407 cs = info_changeset(user, %{info: new_info})
408
409 update_and_set_cache(cs)
410 end
411
412 def get_notified_from_activity(%Activity{recipients: to}) do
413 query =
414 from(
415 u in User,
416 where: u.ap_id in ^to,
417 where: u.local == true
418 )
419
420 Repo.all(query)
421 end
422
423 def get_recipients_from_activity(%Activity{recipients: to}) do
424 query =
425 from(
426 u in User,
427 where: u.ap_id in ^to,
428 or_where: fragment("? && ?", u.following, ^to)
429 )
430
431 query = from(u in query, where: u.local == true)
432
433 Repo.all(query)
434 end
435
436 def search(query, resolve) do
437 # strip the beginning @ off if there is a query
438 query = String.trim_leading(query, "@")
439
440 if resolve do
441 User.get_or_fetch_by_nickname(query)
442 end
443
444 inner =
445 from(
446 u in User,
447 select_merge: %{
448 search_distance:
449 fragment(
450 "? <-> (? || ?)",
451 ^query,
452 u.nickname,
453 u.name
454 )
455 }
456 )
457
458 q =
459 from(
460 s in subquery(inner),
461 order_by: s.search_distance,
462 limit: 20
463 )
464
465 Repo.all(q)
466 end
467
468 def block(user, %{ap_id: ap_id}) do
469 blocks = user.info["blocks"] || []
470 new_blocks = Enum.uniq([ap_id | blocks])
471 new_info = Map.put(user.info, "blocks", new_blocks)
472
473 cs = User.info_changeset(user, %{info: new_info})
474 update_and_set_cache(cs)
475 end
476
477 def unblock(user, %{ap_id: ap_id}) do
478 blocks = user.info["blocks"] || []
479 new_blocks = List.delete(blocks, ap_id)
480 new_info = Map.put(user.info, "blocks", new_blocks)
481
482 cs = User.info_changeset(user, %{info: new_info})
483 update_and_set_cache(cs)
484 end
485
486 def blocks?(user, %{ap_id: ap_id}) do
487 blocks = user.info["blocks"] || []
488 Enum.member?(blocks, ap_id)
489 end
490
491 def local_user_query() do
492 from(u in User, where: u.local == true)
493 end
494
495 def deactivate(%User{} = user) do
496 new_info = Map.put(user.info, "deactivated", true)
497 cs = User.info_changeset(user, %{info: new_info})
498 update_and_set_cache(cs)
499 end
500
501 def delete(%User{} = user) do
502 {:ok, user} = User.deactivate(user)
503
504 # Remove all relationships
505 {:ok, followers} = User.get_followers(user)
506
507 followers
508 |> Enum.each(fn follower -> User.unfollow(follower, user) end)
509
510 {:ok, friends} = User.get_friends(user)
511
512 friends
513 |> Enum.each(fn followed -> User.unfollow(user, followed) end)
514
515 query = from(a in Activity, where: a.actor == ^user.ap_id)
516
517 Repo.all(query)
518 |> Enum.each(fn activity ->
519 case activity.data["type"] do
520 "Create" ->
521 ActivityPub.delete(Object.get_by_ap_id(activity.data["object"]["id"]))
522
523 # TODO: Do something with likes, follows, repeats.
524 _ ->
525 "Doing nothing"
526 end
527 end)
528
529 :ok
530 end
531
532 def get_or_fetch_by_ap_id(ap_id) do
533 if user = get_by_ap_id(ap_id) do
534 user
535 else
536 ap_try = ActivityPub.make_user_from_ap_id(ap_id)
537
538 case ap_try do
539 {:ok, user} ->
540 user
541
542 _ ->
543 case OStatus.make_user(ap_id) do
544 {:ok, user} -> user
545 _ -> {:error, "Could not fetch by AP id"}
546 end
547 end
548 end
549 end
550
551 # AP style
552 def public_key_from_info(%{
553 "source_data" => %{"publicKey" => %{"publicKeyPem" => public_key_pem}}
554 }) do
555 key =
556 :public_key.pem_decode(public_key_pem)
557 |> hd()
558 |> :public_key.pem_entry_decode()
559
560 {:ok, key}
561 end
562
563 # OStatus Magic Key
564 def public_key_from_info(%{"magic_key" => magic_key}) do
565 {:ok, Pleroma.Web.Salmon.decode_key(magic_key)}
566 end
567
568 def get_public_key_for_ap_id(ap_id) do
569 with %User{} = user <- get_or_fetch_by_ap_id(ap_id),
570 {:ok, public_key} <- public_key_from_info(user.info) do
571 {:ok, public_key}
572 else
573 _ -> :error
574 end
575 end
576
577 defp blank?(""), do: nil
578 defp blank?(n), do: n
579
580 def insert_or_update_user(data) do
581 data =
582 data
583 |> Map.put(:name, blank?(data[:name]) || data[:nickname])
584
585 cs = User.remote_user_creation(data)
586 Repo.insert(cs, on_conflict: :replace_all, conflict_target: :nickname)
587 end
588
589 def ap_enabled?(%User{info: info}), do: info["ap_enabled"]
590 def ap_enabled?(_), do: false
591
592 def get_or_fetch(uri_or_nickname) do
593 if String.starts_with?(uri_or_nickname, "http") do
594 get_or_fetch_by_ap_id(uri_or_nickname)
595 else
596 get_or_fetch_by_nickname(uri_or_nickname)
597 end
598 end
599 end