Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into feature/local-only...
[akkoma] / lib / pleroma / emoji / pack.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Emoji.Pack do
6 @derive {Jason.Encoder, only: [:files, :pack, :files_count]}
7 defstruct files: %{},
8 files_count: 0,
9 pack_file: nil,
10 path: nil,
11 pack: %{},
12 name: nil
13
14 @type t() :: %__MODULE__{
15 files: %{String.t() => Path.t()},
16 files_count: non_neg_integer(),
17 pack_file: Path.t(),
18 path: Path.t(),
19 pack: map(),
20 name: String.t()
21 }
22
23 alias Pleroma.Emoji
24 alias Pleroma.Emoji.Pack
25
26 @spec create(String.t()) :: {:ok, t()} | {:error, File.posix()} | {:error, :empty_values}
27 def create(name) do
28 with :ok <- validate_not_empty([name]),
29 dir <- Path.join(emoji_path(), name),
30 :ok <- File.mkdir(dir) do
31 %__MODULE__{pack_file: Path.join(dir, "pack.json")}
32 |> save_pack()
33 end
34 end
35
36 defp paginate(entities, 1, page_size), do: Enum.take(entities, page_size)
37
38 defp paginate(entities, page, page_size) do
39 entities
40 |> Enum.chunk_every(page_size)
41 |> Enum.at(page - 1)
42 end
43
44 @spec show(keyword()) :: {:ok, t()} | {:error, atom()}
45 def show(opts) do
46 name = opts[:name]
47
48 with :ok <- validate_not_empty([name]),
49 {:ok, pack} <- load_pack(name) do
50 shortcodes =
51 pack.files
52 |> Map.keys()
53 |> Enum.sort()
54 |> paginate(opts[:page], opts[:page_size])
55
56 pack = Map.put(pack, :files, Map.take(pack.files, shortcodes))
57
58 {:ok, validate_pack(pack)}
59 end
60 end
61
62 @spec delete(String.t()) ::
63 {:ok, [binary()]} | {:error, File.posix(), binary()} | {:error, :empty_values}
64 def delete(name) do
65 with :ok <- validate_not_empty([name]) do
66 emoji_path()
67 |> Path.join(name)
68 |> File.rm_rf()
69 end
70 end
71
72 @spec unpack_zip_emojies(list(tuple())) :: list(map())
73 defp unpack_zip_emojies(zip_files) do
74 Enum.reduce(zip_files, [], fn
75 {_, path, s, _, _, _}, acc when elem(s, 2) == :regular ->
76 with(
77 filename <- Path.basename(path),
78 shortcode <- Path.basename(filename, Path.extname(filename)),
79 false <- Emoji.exist?(shortcode)
80 ) do
81 [%{path: path, filename: path, shortcode: shortcode} | acc]
82 else
83 _ -> acc
84 end
85
86 _, acc ->
87 acc
88 end)
89 end
90
91 @spec add_file(t(), String.t(), Path.t(), Plug.Upload.t()) ::
92 {:ok, t()}
93 | {:error, File.posix() | atom()}
94 def add_file(%Pack{} = pack, _, _, %Plug.Upload{content_type: "application/zip"} = file) do
95 with {:ok, zip_files} <- :zip.table(to_charlist(file.path)),
96 [_ | _] = emojies <- unpack_zip_emojies(zip_files),
97 {:ok, tmp_dir} <- Pleroma.Utils.tmp_dir("emoji") do
98 try do
99 {:ok, _emoji_files} =
100 :zip.unzip(
101 to_charlist(file.path),
102 [{:file_list, Enum.map(emojies, & &1[:path])}, {:cwd, tmp_dir}]
103 )
104
105 {_, updated_pack} =
106 Enum.map_reduce(emojies, pack, fn item, emoji_pack ->
107 emoji_file = %Plug.Upload{
108 filename: item[:filename],
109 path: Path.join(tmp_dir, item[:path])
110 }
111
112 {:ok, updated_pack} =
113 do_add_file(
114 emoji_pack,
115 item[:shortcode],
116 to_string(item[:filename]),
117 emoji_file
118 )
119
120 {item, updated_pack}
121 end)
122
123 Emoji.reload()
124
125 {:ok, updated_pack}
126 after
127 File.rm_rf(tmp_dir)
128 end
129 else
130 {:error, _} = error ->
131 error
132
133 _ ->
134 {:ok, pack}
135 end
136 end
137
138 def add_file(%Pack{} = pack, shortcode, filename, %Plug.Upload{} = file) do
139 with :ok <- validate_not_empty([shortcode, filename]),
140 :ok <- validate_emoji_not_exists(shortcode),
141 {:ok, updated_pack} <- do_add_file(pack, shortcode, filename, file) do
142 Emoji.reload()
143 {:ok, updated_pack}
144 end
145 end
146
147 defp do_add_file(pack, shortcode, filename, file) do
148 with :ok <- save_file(file, pack, filename) do
149 pack
150 |> put_emoji(shortcode, filename)
151 |> save_pack()
152 end
153 end
154
155 @spec delete_file(t(), String.t()) ::
156 {:ok, t()} | {:error, File.posix() | atom()}
157 def delete_file(%Pack{} = pack, shortcode) do
158 with :ok <- validate_not_empty([shortcode]),
159 :ok <- remove_file(pack, shortcode),
160 {:ok, updated_pack} <- pack |> delete_emoji(shortcode) |> save_pack() do
161 Emoji.reload()
162 {:ok, updated_pack}
163 end
164 end
165
166 @spec update_file(t(), String.t(), String.t(), String.t(), boolean()) ::
167 {:ok, t()} | {:error, File.posix() | atom()}
168 def update_file(%Pack{} = pack, shortcode, new_shortcode, new_filename, force) do
169 with :ok <- validate_not_empty([shortcode, new_shortcode, new_filename]),
170 {:ok, filename} <- get_filename(pack, shortcode),
171 :ok <- validate_emoji_not_exists(new_shortcode, force),
172 :ok <- rename_file(pack, filename, new_filename),
173 {:ok, updated_pack} <-
174 pack
175 |> delete_emoji(shortcode)
176 |> put_emoji(new_shortcode, new_filename)
177 |> save_pack() do
178 Emoji.reload()
179 {:ok, updated_pack}
180 end
181 end
182
183 @spec import_from_filesystem() :: {:ok, [String.t()]} | {:error, File.posix() | atom()}
184 def import_from_filesystem do
185 emoji_path = emoji_path()
186
187 with {:ok, %{access: :read_write}} <- File.stat(emoji_path),
188 {:ok, results} <- File.ls(emoji_path) do
189 names =
190 results
191 |> Enum.map(&Path.join(emoji_path, &1))
192 |> Enum.reject(fn path ->
193 File.dir?(path) and File.exists?(Path.join(path, "pack.json"))
194 end)
195 |> Enum.map(&write_pack_contents/1)
196 |> Enum.reject(&is_nil/1)
197
198 {:ok, names}
199 else
200 {:ok, %{access: _}} -> {:error, :no_read_write}
201 e -> e
202 end
203 end
204
205 @spec list_remote(keyword()) :: {:ok, map()} | {:error, atom()}
206 def list_remote(opts) do
207 uri = opts[:url] |> String.trim() |> URI.parse()
208
209 with :ok <- validate_shareable_packs_available(uri) do
210 uri
211 |> URI.merge("/api/pleroma/emoji/packs?page=#{opts[:page]}&page_size=#{opts[:page_size]}")
212 |> http_get()
213 end
214 end
215
216 @spec list_local(keyword()) :: {:ok, map(), non_neg_integer()}
217 def list_local(opts) do
218 with {:ok, results} <- list_packs_dir() do
219 all_packs =
220 results
221 |> Enum.map(fn name ->
222 case load_pack(name) do
223 {:ok, pack} -> pack
224 _ -> nil
225 end
226 end)
227 |> Enum.reject(&is_nil/1)
228
229 packs =
230 all_packs
231 |> paginate(opts[:page], opts[:page_size])
232 |> Map.new(fn pack -> {pack.name, validate_pack(pack)} end)
233
234 {:ok, packs, length(all_packs)}
235 end
236 end
237
238 @spec get_archive(String.t()) :: {:ok, binary()} | {:error, atom()}
239 def get_archive(name) do
240 with {:ok, pack} <- load_pack(name),
241 :ok <- validate_downloadable(pack) do
242 {:ok, fetch_archive(pack)}
243 end
244 end
245
246 @spec download(String.t(), String.t(), String.t()) :: {:ok, t()} | {:error, atom()}
247 def download(name, url, as) do
248 uri = url |> String.trim() |> URI.parse()
249
250 with :ok <- validate_shareable_packs_available(uri),
251 {:ok, remote_pack} <-
252 uri |> URI.merge("/api/pleroma/emoji/pack?name=#{name}") |> http_get(),
253 {:ok, %{sha: sha, url: url} = pack_info} <- fetch_pack_info(remote_pack, uri, name),
254 {:ok, archive} <- download_archive(url, sha),
255 pack <- copy_as(remote_pack, as || name),
256 {:ok, _} = unzip(archive, pack_info, remote_pack, pack) do
257 # Fallback can't contain a pack.json file, since that would cause the fallback-src-sha256
258 # in it to depend on itself
259 if pack_info[:fallback] do
260 save_pack(pack)
261 else
262 {:ok, pack}
263 end
264 end
265 end
266
267 @spec save_metadata(map(), t()) :: {:ok, t()} | {:error, File.posix()}
268 def save_metadata(metadata, %__MODULE__{} = pack) do
269 pack
270 |> Map.put(:pack, metadata)
271 |> save_pack()
272 end
273
274 @spec update_metadata(String.t(), map()) :: {:ok, t()} | {:error, File.posix()}
275 def update_metadata(name, data) do
276 with {:ok, pack} <- load_pack(name) do
277 if fallback_sha_changed?(pack, data) do
278 update_sha_and_save_metadata(pack, data)
279 else
280 save_metadata(data, pack)
281 end
282 end
283 end
284
285 @spec load_pack(String.t()) :: {:ok, t()} | {:error, :not_found}
286 def load_pack(name) do
287 pack_file = Path.join([emoji_path(), name, "pack.json"])
288
289 if File.exists?(pack_file) do
290 pack =
291 pack_file
292 |> File.read!()
293 |> from_json()
294 |> Map.put(:pack_file, pack_file)
295 |> Map.put(:path, Path.dirname(pack_file))
296 |> Map.put(:name, name)
297
298 files_count =
299 pack.files
300 |> Map.keys()
301 |> length()
302
303 {:ok, Map.put(pack, :files_count, files_count)}
304 else
305 {:error, :not_found}
306 end
307 end
308
309 @spec emoji_path() :: Path.t()
310 defp emoji_path do
311 [:instance, :static_dir]
312 |> Pleroma.Config.get!()
313 |> Path.join("emoji")
314 end
315
316 defp validate_emoji_not_exists(shortcode, force \\ false)
317 defp validate_emoji_not_exists(_shortcode, true), do: :ok
318
319 defp validate_emoji_not_exists(shortcode, _) do
320 if Emoji.exist?(shortcode) do
321 {:error, :already_exists}
322 else
323 :ok
324 end
325 end
326
327 defp write_pack_contents(path) do
328 pack = %__MODULE__{
329 files: files_from_path(path),
330 path: path,
331 pack_file: Path.join(path, "pack.json")
332 }
333
334 case save_pack(pack) do
335 {:ok, _pack} -> Path.basename(path)
336 _ -> nil
337 end
338 end
339
340 defp files_from_path(path) do
341 txt_path = Path.join(path, "emoji.txt")
342
343 if File.exists?(txt_path) do
344 # There's an emoji.txt file, it's likely from a pack installed by the pack manager.
345 # Make a pack.json file from the contents of that emoji.txt file
346
347 # FIXME: Copy-pasted from Pleroma.Emoji/load_from_file_stream/2
348
349 # Create a map of shortcodes to filenames from emoji.txt
350 txt_path
351 |> File.read!()
352 |> String.split("\n")
353 |> Enum.map(&String.trim/1)
354 |> Enum.map(fn line ->
355 case String.split(line, ~r/,\s*/) do
356 # This matches both strings with and without tags
357 # and we don't care about tags here
358 [name, file | _] ->
359 file_dir_name = Path.dirname(file)
360
361 if String.ends_with?(path, file_dir_name) do
362 {name, Path.basename(file)}
363 else
364 {name, file}
365 end
366
367 _ ->
368 nil
369 end
370 end)
371 |> Enum.reject(&is_nil/1)
372 |> Map.new()
373 else
374 # If there's no emoji.txt, assume all files
375 # that are of certain extensions from the config are emojis and import them all
376 pack_extensions = Pleroma.Config.get!([:emoji, :pack_extensions])
377 Emoji.Loader.make_shortcode_to_file_map(path, pack_extensions)
378 end
379 end
380
381 defp validate_pack(pack) do
382 info =
383 if downloadable?(pack) do
384 archive = fetch_archive(pack)
385 archive_sha = :crypto.hash(:sha256, archive) |> Base.encode16()
386
387 pack.pack
388 |> Map.put("can-download", true)
389 |> Map.put("download-sha256", archive_sha)
390 else
391 Map.put(pack.pack, "can-download", false)
392 end
393
394 Map.put(pack, :pack, info)
395 end
396
397 defp downloadable?(pack) do
398 # If the pack is set as shared, check if it can be downloaded
399 # That means that when asked, the pack can be packed and sent to the remote
400 # Otherwise, they'd have to download it from external-src
401 pack.pack["share-files"] &&
402 Enum.all?(pack.files, fn {_, file} ->
403 pack.path
404 |> Path.join(file)
405 |> File.exists?()
406 end)
407 end
408
409 defp create_archive_and_cache(pack, hash) do
410 files = ['pack.json' | Enum.map(pack.files, fn {_, file} -> to_charlist(file) end)]
411
412 {:ok, {_, result}} =
413 :zip.zip('#{pack.name}.zip', files, [:memory, cwd: to_charlist(pack.path)])
414
415 ttl_per_file = Pleroma.Config.get!([:emoji, :shared_pack_cache_seconds_per_file])
416 overall_ttl = :timer.seconds(ttl_per_file * Enum.count(files))
417
418 Cachex.put!(
419 :emoji_packs_cache,
420 pack.name,
421 # if pack.json MD5 changes, the cache is not valid anymore
422 %{hash: hash, pack_data: result},
423 # Add a minute to cache time for every file in the pack
424 ttl: overall_ttl
425 )
426
427 result
428 end
429
430 defp save_pack(pack) do
431 with {:ok, json} <- Jason.encode(pack, pretty: true),
432 :ok <- File.write(pack.pack_file, json) do
433 {:ok, pack}
434 end
435 end
436
437 defp from_json(json) do
438 map = Jason.decode!(json)
439
440 struct(__MODULE__, %{files: map["files"], pack: map["pack"]})
441 end
442
443 defp validate_shareable_packs_available(uri) do
444 with {:ok, %{"links" => links}} <- uri |> URI.merge("/.well-known/nodeinfo") |> http_get(),
445 # Get the actual nodeinfo address and fetch it
446 {:ok, %{"metadata" => %{"features" => features}}} <-
447 links |> List.last() |> Map.get("href") |> http_get() do
448 if Enum.member?(features, "shareable_emoji_packs") do
449 :ok
450 else
451 {:error, :not_shareable}
452 end
453 end
454 end
455
456 defp validate_not_empty(list) do
457 if Enum.all?(list, fn i -> is_binary(i) and i != "" end) do
458 :ok
459 else
460 {:error, :empty_values}
461 end
462 end
463
464 defp save_file(%Plug.Upload{path: upload_path}, pack, filename) do
465 file_path = Path.join(pack.path, filename)
466 create_subdirs(file_path)
467
468 with {:ok, _} <- File.copy(upload_path, file_path) do
469 :ok
470 end
471 end
472
473 defp put_emoji(pack, shortcode, filename) do
474 files = Map.put(pack.files, shortcode, filename)
475 %{pack | files: files, files_count: length(Map.keys(files))}
476 end
477
478 defp delete_emoji(pack, shortcode) do
479 files = Map.delete(pack.files, shortcode)
480 %{pack | files: files}
481 end
482
483 defp rename_file(pack, filename, new_filename) do
484 old_path = Path.join(pack.path, filename)
485 new_path = Path.join(pack.path, new_filename)
486 create_subdirs(new_path)
487
488 with :ok <- File.rename(old_path, new_path) do
489 remove_dir_if_empty(old_path, filename)
490 end
491 end
492
493 defp create_subdirs(file_path) do
494 if String.contains?(file_path, "/") do
495 file_path
496 |> Path.dirname()
497 |> File.mkdir_p!()
498 end
499 end
500
501 defp remove_file(pack, shortcode) do
502 with {:ok, filename} <- get_filename(pack, shortcode),
503 emoji <- Path.join(pack.path, filename),
504 :ok <- File.rm(emoji) do
505 remove_dir_if_empty(emoji, filename)
506 end
507 end
508
509 defp remove_dir_if_empty(emoji, filename) do
510 dir = Path.dirname(emoji)
511
512 if String.contains?(filename, "/") and File.ls!(dir) == [] do
513 File.rmdir!(dir)
514 else
515 :ok
516 end
517 end
518
519 defp get_filename(pack, shortcode) do
520 with %{^shortcode => filename} when is_binary(filename) <- pack.files,
521 true <- pack.path |> Path.join(filename) |> File.exists?() do
522 {:ok, filename}
523 else
524 _ -> {:error, :doesnt_exist}
525 end
526 end
527
528 defp http_get(%URI{} = url), do: url |> to_string() |> http_get()
529
530 defp http_get(url) do
531 with {:ok, %{body: body}} <- Pleroma.HTTP.get(url, [], pool: :default) do
532 Jason.decode(body)
533 end
534 end
535
536 defp list_packs_dir do
537 emoji_path = emoji_path()
538 # Create the directory first if it does not exist. This is probably the first request made
539 # with the API so it should be sufficient
540 with {:create_dir, :ok} <- {:create_dir, File.mkdir_p(emoji_path)},
541 {:ls, {:ok, results}} <- {:ls, File.ls(emoji_path)} do
542 {:ok, Enum.sort(results)}
543 else
544 {:create_dir, {:error, e}} -> {:error, :create_dir, e}
545 {:ls, {:error, e}} -> {:error, :ls, e}
546 end
547 end
548
549 defp validate_downloadable(pack) do
550 if downloadable?(pack), do: :ok, else: {:error, :cant_download}
551 end
552
553 defp copy_as(remote_pack, local_name) do
554 path = Path.join(emoji_path(), local_name)
555
556 %__MODULE__{
557 name: local_name,
558 path: path,
559 files: remote_pack["files"],
560 pack_file: Path.join(path, "pack.json")
561 }
562 end
563
564 defp unzip(archive, pack_info, remote_pack, local_pack) do
565 with :ok <- File.mkdir_p!(local_pack.path) do
566 files = Enum.map(remote_pack["files"], fn {_, path} -> to_charlist(path) end)
567 # Fallback cannot contain a pack.json file
568 files = if pack_info[:fallback], do: files, else: ['pack.json' | files]
569
570 :zip.unzip(archive, cwd: to_charlist(local_pack.path), file_list: files)
571 end
572 end
573
574 defp fetch_pack_info(remote_pack, uri, name) do
575 case remote_pack["pack"] do
576 %{"share-files" => true, "can-download" => true, "download-sha256" => sha} ->
577 {:ok,
578 %{
579 sha: sha,
580 url: URI.merge(uri, "/api/pleroma/emoji/packs/archive?name=#{name}") |> to_string()
581 }}
582
583 %{"fallback-src" => src, "fallback-src-sha256" => sha} when is_binary(src) ->
584 {:ok,
585 %{
586 sha: sha,
587 url: src,
588 fallback: true
589 }}
590
591 _ ->
592 {:error, "The pack was not set as shared and there is no fallback src to download from"}
593 end
594 end
595
596 defp download_archive(url, sha) do
597 with {:ok, %{body: archive}} <- Pleroma.HTTP.get(url) do
598 if Base.decode16!(sha) == :crypto.hash(:sha256, archive) do
599 {:ok, archive}
600 else
601 {:error, :invalid_checksum}
602 end
603 end
604 end
605
606 defp fetch_archive(pack) do
607 hash = :crypto.hash(:md5, File.read!(pack.pack_file))
608
609 case Cachex.get!(:emoji_packs_cache, pack.name) do
610 %{hash: ^hash, pack_data: archive} -> archive
611 _ -> create_archive_and_cache(pack, hash)
612 end
613 end
614
615 defp fallback_sha_changed?(pack, data) do
616 is_binary(data[:"fallback-src"]) and data[:"fallback-src"] != pack.pack["fallback-src"]
617 end
618
619 defp update_sha_and_save_metadata(pack, data) do
620 with {:ok, %{body: zip}} <- Pleroma.HTTP.get(data[:"fallback-src"]),
621 :ok <- validate_has_all_files(pack, zip) do
622 fallback_sha = :sha256 |> :crypto.hash(zip) |> Base.encode16()
623
624 data
625 |> Map.put("fallback-src-sha256", fallback_sha)
626 |> save_metadata(pack)
627 end
628 end
629
630 defp validate_has_all_files(pack, zip) do
631 with {:ok, f_list} <- :zip.unzip(zip, [:memory]) do
632 # Check if all files from the pack.json are in the archive
633 pack.files
634 |> Enum.all?(fn {_, from_manifest} ->
635 List.keyfind(f_list, to_charlist(from_manifest), 0)
636 end)
637 |> if(do: :ok, else: {:error, :incomplete})
638 end
639 end
640 end