Merge branch 'develop' into openapi/reports
[akkoma] / lib / pleroma / web / pleroma_api / controllers / emoji_api_controller.ex
1 defmodule Pleroma.Web.PleromaAPI.EmojiAPIController do
2 use Pleroma.Web, :controller
3
4 alias Pleroma.Plugs.ExpectPublicOrAuthenticatedCheckPlug
5 alias Pleroma.Plugs.OAuthScopesPlug
6
7 require Logger
8
9 plug(
10 OAuthScopesPlug,
11 %{scopes: ["write"], admin: true}
12 when action in [
13 :create,
14 :delete,
15 :save_from,
16 :import_from_fs,
17 :update_file,
18 :update_metadata
19 ]
20 )
21
22 plug(
23 :skip_plug,
24 [OAuthScopesPlug, ExpectPublicOrAuthenticatedCheckPlug]
25 when action in [:download_shared, :list_packs, :list_from]
26 )
27
28 defp emoji_dir_path do
29 Path.join(
30 Pleroma.Config.get!([:instance, :static_dir]),
31 "emoji"
32 )
33 end
34
35 @doc """
36 Lists packs from the remote instance.
37
38 Since JS cannot ask remote instances for their packs due to CPS, it has to
39 be done by the server
40 """
41 def list_from(conn, %{"instance_address" => address}) do
42 address = String.trim(address)
43
44 if shareable_packs_available(address) do
45 list_resp =
46 "#{address}/api/pleroma/emoji/packs" |> Tesla.get!() |> Map.get(:body) |> Jason.decode!()
47
48 json(conn, list_resp)
49 else
50 conn
51 |> put_status(:internal_server_error)
52 |> json(%{error: "The requested instance does not support sharing emoji packs"})
53 end
54 end
55
56 @doc """
57 Lists the packs available on the instance as JSON.
58
59 The information is public and does not require authentication. The format is
60 a map of "pack directory name" to pack.json contents.
61 """
62 def list_packs(conn, _params) do
63 # Create the directory first if it does not exist. This is probably the first request made
64 # with the API so it should be sufficient
65 with {:create_dir, :ok} <- {:create_dir, File.mkdir_p(emoji_dir_path())},
66 {:ls, {:ok, results}} <- {:ls, File.ls(emoji_dir_path())} do
67 pack_infos =
68 results
69 |> Enum.filter(&has_pack_json?/1)
70 |> Enum.map(&load_pack/1)
71 # Check if all the files are in place and can be sent
72 |> Enum.map(&validate_pack/1)
73 # Transform into a map of pack-name => pack-data
74 |> Enum.into(%{})
75
76 json(conn, pack_infos)
77 else
78 {:create_dir, {:error, e}} ->
79 conn
80 |> put_status(:internal_server_error)
81 |> json(%{error: "Failed to create the emoji pack directory at #{emoji_dir_path()}: #{e}"})
82
83 {:ls, {:error, e}} ->
84 conn
85 |> put_status(:internal_server_error)
86 |> json(%{
87 error:
88 "Failed to get the contents of the emoji pack directory at #{emoji_dir_path()}: #{e}"
89 })
90 end
91 end
92
93 defp has_pack_json?(file) do
94 dir_path = Path.join(emoji_dir_path(), file)
95 # Filter to only use the pack.json packs
96 File.dir?(dir_path) and File.exists?(Path.join(dir_path, "pack.json"))
97 end
98
99 defp load_pack(pack_name) do
100 pack_path = Path.join(emoji_dir_path(), pack_name)
101 pack_file = Path.join(pack_path, "pack.json")
102
103 {pack_name, Jason.decode!(File.read!(pack_file))}
104 end
105
106 defp validate_pack({name, pack}) do
107 pack_path = Path.join(emoji_dir_path(), name)
108
109 if can_download?(pack, pack_path) do
110 archive_for_sha = make_archive(name, pack, pack_path)
111 archive_sha = :crypto.hash(:sha256, archive_for_sha) |> Base.encode16()
112
113 pack =
114 pack
115 |> put_in(["pack", "can-download"], true)
116 |> put_in(["pack", "download-sha256"], archive_sha)
117
118 {name, pack}
119 else
120 {name, put_in(pack, ["pack", "can-download"], false)}
121 end
122 end
123
124 defp can_download?(pack, pack_path) do
125 # If the pack is set as shared, check if it can be downloaded
126 # That means that when asked, the pack can be packed and sent to the remote
127 # Otherwise, they'd have to download it from external-src
128 pack["pack"]["share-files"] &&
129 Enum.all?(pack["files"], fn {_, path} ->
130 File.exists?(Path.join(pack_path, path))
131 end)
132 end
133
134 defp create_archive_and_cache(name, pack, pack_dir, md5) do
135 files =
136 ['pack.json'] ++
137 (pack["files"] |> Enum.map(fn {_, path} -> to_charlist(path) end))
138
139 {:ok, {_, zip_result}} = :zip.zip('#{name}.zip', files, [:memory, cwd: to_charlist(pack_dir)])
140
141 cache_seconds_per_file = Pleroma.Config.get!([:emoji, :shared_pack_cache_seconds_per_file])
142 cache_ms = :timer.seconds(cache_seconds_per_file * Enum.count(files))
143
144 Cachex.put!(
145 :emoji_packs_cache,
146 name,
147 # if pack.json MD5 changes, the cache is not valid anymore
148 %{pack_json_md5: md5, pack_data: zip_result},
149 # Add a minute to cache time for every file in the pack
150 ttl: cache_ms
151 )
152
153 Logger.debug("Created an archive for the '#{name}' emoji pack, \
154 keeping it in cache for #{div(cache_ms, 1000)}s")
155
156 zip_result
157 end
158
159 defp make_archive(name, pack, pack_dir) do
160 # Having a different pack.json md5 invalidates cache
161 pack_file_md5 = :crypto.hash(:md5, File.read!(Path.join(pack_dir, "pack.json")))
162
163 case Cachex.get!(:emoji_packs_cache, name) do
164 %{pack_file_md5: ^pack_file_md5, pack_data: zip_result} ->
165 Logger.debug("Using cache for the '#{name}' shared emoji pack")
166 zip_result
167
168 _ ->
169 create_archive_and_cache(name, pack, pack_dir, pack_file_md5)
170 end
171 end
172
173 @doc """
174 An endpoint for other instances (via admin UI) or users (via browser)
175 to download packs that the instance shares.
176 """
177 def download_shared(conn, %{"name" => name}) do
178 pack_dir = Path.join(emoji_dir_path(), name)
179 pack_file = Path.join(pack_dir, "pack.json")
180
181 with {_, true} <- {:exists?, File.exists?(pack_file)},
182 pack = Jason.decode!(File.read!(pack_file)),
183 {_, true} <- {:can_download?, can_download?(pack, pack_dir)} do
184 zip_result = make_archive(name, pack, pack_dir)
185 send_download(conn, {:binary, zip_result}, filename: "#{name}.zip")
186 else
187 {:can_download?, _} ->
188 conn
189 |> put_status(:forbidden)
190 |> json(%{
191 error: "Pack #{name} cannot be downloaded from this instance, either pack sharing\
192 was disabled for this pack or some files are missing"
193 })
194
195 {:exists?, _} ->
196 conn
197 |> put_status(:not_found)
198 |> json(%{error: "Pack #{name} does not exist"})
199 end
200 end
201
202 defp shareable_packs_available(address) do
203 "#{address}/.well-known/nodeinfo"
204 |> Tesla.get!()
205 |> Map.get(:body)
206 |> Jason.decode!()
207 |> Map.get("links")
208 |> List.last()
209 |> Map.get("href")
210 # Get the actual nodeinfo address and fetch it
211 |> Tesla.get!()
212 |> Map.get(:body)
213 |> Jason.decode!()
214 |> get_in(["metadata", "features"])
215 |> Enum.member?("shareable_emoji_packs")
216 end
217
218 @doc """
219 An admin endpoint to request downloading and storing a pack named `pack_name` from the instance
220 `instance_address`.
221
222 If the requested instance's admin chose to share the pack, it will be downloaded
223 from that instance, otherwise it will be downloaded from the fallback source, if there is one.
224 """
225 def save_from(conn, %{"instance_address" => address, "pack_name" => name} = data) do
226 address = String.trim(address)
227
228 if shareable_packs_available(address) do
229 full_pack =
230 "#{address}/api/pleroma/emoji/packs/list"
231 |> Tesla.get!()
232 |> Map.get(:body)
233 |> Jason.decode!()
234 |> Map.get(name)
235
236 pack_info_res =
237 case full_pack["pack"] do
238 %{"share-files" => true, "can-download" => true, "download-sha256" => sha} ->
239 {:ok,
240 %{
241 sha: sha,
242 uri: "#{address}/api/pleroma/emoji/packs/download_shared/#{name}"
243 }}
244
245 %{"fallback-src" => src, "fallback-src-sha256" => sha} when is_binary(src) ->
246 {:ok,
247 %{
248 sha: sha,
249 uri: src,
250 fallback: true
251 }}
252
253 _ ->
254 {:error,
255 "The pack was not set as shared and there is no fallback src to download from"}
256 end
257
258 with {:ok, %{sha: sha, uri: uri} = pinfo} <- pack_info_res,
259 %{body: emoji_archive} <- Tesla.get!(uri),
260 {_, true} <- {:checksum, Base.decode16!(sha) == :crypto.hash(:sha256, emoji_archive)} do
261 local_name = data["as"] || name
262 pack_dir = Path.join(emoji_dir_path(), local_name)
263 File.mkdir_p!(pack_dir)
264
265 files = Enum.map(full_pack["files"], fn {_, path} -> to_charlist(path) end)
266 # Fallback cannot contain a pack.json file
267 files = if pinfo[:fallback], do: files, else: ['pack.json'] ++ files
268
269 {:ok, _} = :zip.unzip(emoji_archive, cwd: to_charlist(pack_dir), file_list: files)
270
271 # Fallback can't contain a pack.json file, since that would cause the fallback-src-sha256
272 # in it to depend on itself
273 if pinfo[:fallback] do
274 pack_file_path = Path.join(pack_dir, "pack.json")
275
276 File.write!(pack_file_path, Jason.encode!(full_pack, pretty: true))
277 end
278
279 json(conn, "ok")
280 else
281 {:error, e} ->
282 conn |> put_status(:internal_server_error) |> json(%{error: e})
283
284 {:checksum, _} ->
285 conn
286 |> put_status(:internal_server_error)
287 |> json(%{error: "SHA256 for the pack doesn't match the one sent by the server"})
288 end
289 else
290 conn
291 |> put_status(:internal_server_error)
292 |> json(%{error: "The requested instance does not support sharing emoji packs"})
293 end
294 end
295
296 @doc """
297 Creates an empty pack named `name` which then can be updated via the admin UI.
298 """
299 def create(conn, %{"name" => name}) do
300 pack_dir = Path.join(emoji_dir_path(), name)
301
302 if not File.exists?(pack_dir) do
303 File.mkdir_p!(pack_dir)
304
305 pack_file_p = Path.join(pack_dir, "pack.json")
306
307 File.write!(
308 pack_file_p,
309 Jason.encode!(%{pack: %{}, files: %{}}, pretty: true)
310 )
311
312 conn |> json("ok")
313 else
314 conn
315 |> put_status(:conflict)
316 |> json(%{error: "A pack named \"#{name}\" already exists"})
317 end
318 end
319
320 @doc """
321 Deletes the pack `name` and all it's files.
322 """
323 def delete(conn, %{"name" => name}) do
324 pack_dir = Path.join(emoji_dir_path(), name)
325
326 case File.rm_rf(pack_dir) do
327 {:ok, _} ->
328 conn |> json("ok")
329
330 {:error, _, _} ->
331 conn
332 |> put_status(:internal_server_error)
333 |> json(%{error: "Couldn't delete the pack #{name}"})
334 end
335 end
336
337 @doc """
338 An endpoint to update `pack_names`'s metadata.
339
340 `new_data` is the new metadata for the pack, that will replace the old metadata.
341 """
342 def update_metadata(conn, %{"pack_name" => name, "new_data" => new_data}) do
343 pack_file_p = Path.join([emoji_dir_path(), name, "pack.json"])
344
345 full_pack = Jason.decode!(File.read!(pack_file_p))
346
347 # The new fallback-src is in the new data and it's not the same as it was in the old data
348 should_update_fb_sha =
349 not is_nil(new_data["fallback-src"]) and
350 new_data["fallback-src"] != full_pack["pack"]["fallback-src"]
351
352 with {_, true} <- {:should_update?, should_update_fb_sha},
353 %{body: pack_arch} <- Tesla.get!(new_data["fallback-src"]),
354 {:ok, flist} <- :zip.unzip(pack_arch, [:memory]),
355 {_, true} <- {:has_all_files?, has_all_files?(full_pack, flist)} do
356 fallback_sha = :crypto.hash(:sha256, pack_arch) |> Base.encode16()
357
358 new_data = Map.put(new_data, "fallback-src-sha256", fallback_sha)
359 update_metadata_and_send(conn, full_pack, new_data, pack_file_p)
360 else
361 {:should_update?, _} ->
362 update_metadata_and_send(conn, full_pack, new_data, pack_file_p)
363
364 {:has_all_files?, _} ->
365 conn
366 |> put_status(:bad_request)
367 |> json(%{error: "The fallback archive does not have all files specified in pack.json"})
368 end
369 end
370
371 # Check if all files from the pack.json are in the archive
372 defp has_all_files?(%{"files" => files}, flist) do
373 Enum.all?(files, fn {_, from_manifest} ->
374 Enum.find(flist, fn {from_archive, _} ->
375 to_string(from_archive) == from_manifest
376 end)
377 end)
378 end
379
380 defp update_metadata_and_send(conn, full_pack, new_data, pack_file_p) do
381 full_pack = Map.put(full_pack, "pack", new_data)
382 File.write!(pack_file_p, Jason.encode!(full_pack, pretty: true))
383
384 # Send new data back with fallback sha filled
385 json(conn, new_data)
386 end
387
388 defp get_filename(%{"filename" => filename}), do: filename
389
390 defp get_filename(%{"file" => file}) do
391 case file do
392 %Plug.Upload{filename: filename} -> filename
393 url when is_binary(url) -> Path.basename(url)
394 end
395 end
396
397 defp empty?(str), do: String.trim(str) == ""
398
399 defp update_file_and_send(conn, updated_full_pack, pack_file_p) do
400 # Write the emoji pack file
401 File.write!(pack_file_p, Jason.encode!(updated_full_pack, pretty: true))
402
403 # Return the modified file list
404 json(conn, updated_full_pack["files"])
405 end
406
407 @doc """
408 Updates a file in a pack.
409
410 Updating can mean three things:
411
412 - `add` adds an emoji named `shortcode` to the pack `pack_name`,
413 that means that the emoji file needs to be uploaded with the request
414 (thus requiring it to be a multipart request) and be named `file`.
415 There can also be an optional `filename` that will be the new emoji file name
416 (if it's not there, the name will be taken from the uploaded file).
417 - `update` changes emoji shortcode (from `shortcode` to `new_shortcode` or moves the file
418 (from the current filename to `new_filename`)
419 - `remove` removes the emoji named `shortcode` and it's associated file
420 """
421
422 # Add
423 def update_file(
424 conn,
425 %{"pack_name" => pack_name, "action" => "add", "shortcode" => shortcode} = params
426 ) do
427 pack_dir = Path.join(emoji_dir_path(), pack_name)
428 pack_file_p = Path.join(pack_dir, "pack.json")
429
430 full_pack = Jason.decode!(File.read!(pack_file_p))
431
432 with {_, false} <- {:has_shortcode, Map.has_key?(full_pack["files"], shortcode)},
433 filename <- get_filename(params),
434 false <- empty?(shortcode),
435 false <- empty?(filename) do
436 file_path = Path.join(pack_dir, filename)
437
438 # If the name contains directories, create them
439 if String.contains?(file_path, "/") do
440 File.mkdir_p!(Path.dirname(file_path))
441 end
442
443 case params["file"] do
444 %Plug.Upload{path: upload_path} ->
445 # Copy the uploaded file from the temporary directory
446 File.copy!(upload_path, file_path)
447
448 url when is_binary(url) ->
449 # Download and write the file
450 file_contents = Tesla.get!(url).body
451 File.write!(file_path, file_contents)
452 end
453
454 updated_full_pack = put_in(full_pack, ["files", shortcode], filename)
455 update_file_and_send(conn, updated_full_pack, pack_file_p)
456 else
457 {:has_shortcode, _} ->
458 conn
459 |> put_status(:conflict)
460 |> json(%{error: "An emoji with the \"#{shortcode}\" shortcode already exists"})
461
462 true ->
463 conn
464 |> put_status(:bad_request)
465 |> json(%{error: "shortcode or filename cannot be empty"})
466 end
467 end
468
469 # Remove
470 def update_file(conn, %{
471 "pack_name" => pack_name,
472 "action" => "remove",
473 "shortcode" => shortcode
474 }) do
475 pack_dir = Path.join(emoji_dir_path(), pack_name)
476 pack_file_p = Path.join(pack_dir, "pack.json")
477
478 full_pack = Jason.decode!(File.read!(pack_file_p))
479
480 if Map.has_key?(full_pack["files"], shortcode) do
481 {emoji_file_path, updated_full_pack} = pop_in(full_pack, ["files", shortcode])
482
483 emoji_file_path = Path.join(pack_dir, emoji_file_path)
484
485 # Delete the emoji file
486 File.rm!(emoji_file_path)
487
488 # If the old directory has no more files, remove it
489 if String.contains?(emoji_file_path, "/") do
490 dir = Path.dirname(emoji_file_path)
491
492 if Enum.empty?(File.ls!(dir)) do
493 File.rmdir!(dir)
494 end
495 end
496
497 update_file_and_send(conn, updated_full_pack, pack_file_p)
498 else
499 conn
500 |> put_status(:bad_request)
501 |> json(%{error: "Emoji \"#{shortcode}\" does not exist"})
502 end
503 end
504
505 # Update
506 def update_file(
507 conn,
508 %{"pack_name" => pack_name, "action" => "update", "shortcode" => shortcode} = params
509 ) do
510 pack_dir = Path.join(emoji_dir_path(), pack_name)
511 pack_file_p = Path.join(pack_dir, "pack.json")
512
513 full_pack = Jason.decode!(File.read!(pack_file_p))
514
515 with {_, true} <- {:has_shortcode, Map.has_key?(full_pack["files"], shortcode)},
516 %{"new_shortcode" => new_shortcode, "new_filename" => new_filename} <- params,
517 false <- empty?(new_shortcode),
518 false <- empty?(new_filename) do
519 # First, remove the old shortcode, saving the old path
520 {old_emoji_file_path, updated_full_pack} = pop_in(full_pack, ["files", shortcode])
521 old_emoji_file_path = Path.join(pack_dir, old_emoji_file_path)
522 new_emoji_file_path = Path.join(pack_dir, new_filename)
523
524 # If the name contains directories, create them
525 if String.contains?(new_emoji_file_path, "/") do
526 File.mkdir_p!(Path.dirname(new_emoji_file_path))
527 end
528
529 # Move/Rename the old filename to a new filename
530 # These are probably on the same filesystem, so just rename should work
531 :ok = File.rename(old_emoji_file_path, new_emoji_file_path)
532
533 # If the old directory has no more files, remove it
534 if String.contains?(old_emoji_file_path, "/") do
535 dir = Path.dirname(old_emoji_file_path)
536
537 if Enum.empty?(File.ls!(dir)) do
538 File.rmdir!(dir)
539 end
540 end
541
542 # Then, put in the new shortcode with the new path
543 updated_full_pack = put_in(updated_full_pack, ["files", new_shortcode], new_filename)
544 update_file_and_send(conn, updated_full_pack, pack_file_p)
545 else
546 {:has_shortcode, _} ->
547 conn
548 |> put_status(:bad_request)
549 |> json(%{error: "Emoji \"#{shortcode}\" does not exist"})
550
551 true ->
552 conn
553 |> put_status(:bad_request)
554 |> json(%{error: "new_shortcode or new_filename cannot be empty"})
555
556 _ ->
557 conn
558 |> put_status(:bad_request)
559 |> json(%{error: "new_shortcode or new_file were not specified"})
560 end
561 end
562
563 def update_file(conn, %{"action" => action}) do
564 conn
565 |> put_status(:bad_request)
566 |> json(%{error: "Unknown action: #{action}"})
567 end
568
569 @doc """
570 Imports emoji from the filesystem.
571
572 Importing means checking all the directories in the
573 `$instance_static/emoji/` for directories which do not have
574 `pack.json`. If one has an emoji.txt file, that file will be used
575 to create a `pack.json` file with it's contents. If the directory has
576 neither, all the files with specific configured extenstions will be
577 assumed to be emojis and stored in the new `pack.json` file.
578 """
579 def import_from_fs(conn, _params) do
580 emoji_path = emoji_dir_path()
581
582 with {:ok, %{access: :read_write}} <- File.stat(emoji_path),
583 {:ok, results} <- File.ls(emoji_path) do
584 imported_pack_names =
585 results
586 |> Enum.filter(fn file ->
587 dir_path = Path.join(emoji_path, file)
588 # Find the directories that do NOT have pack.json
589 File.dir?(dir_path) and not File.exists?(Path.join(dir_path, "pack.json"))
590 end)
591 |> Enum.map(&write_pack_json_contents/1)
592
593 json(conn, imported_pack_names)
594 else
595 {:ok, %{access: _}} ->
596 conn
597 |> put_status(:internal_server_error)
598 |> json(%{error: "Error: emoji pack directory must be writable"})
599
600 {:error, _} ->
601 conn
602 |> put_status(:internal_server_error)
603 |> json(%{error: "Error accessing emoji pack directory"})
604 end
605 end
606
607 defp write_pack_json_contents(dir) do
608 dir_path = Path.join(emoji_dir_path(), dir)
609 emoji_txt_path = Path.join(dir_path, "emoji.txt")
610
611 files_for_pack = files_for_pack(emoji_txt_path, dir_path)
612 pack_json_contents = Jason.encode!(%{pack: %{}, files: files_for_pack})
613
614 File.write!(Path.join(dir_path, "pack.json"), pack_json_contents)
615
616 dir
617 end
618
619 defp files_for_pack(emoji_txt_path, dir_path) do
620 if File.exists?(emoji_txt_path) do
621 # There's an emoji.txt file, it's likely from a pack installed by the pack manager.
622 # Make a pack.json file from the contents of that emoji.txt fileh
623
624 # FIXME: Copy-pasted from Pleroma.Emoji/load_from_file_stream/2
625
626 # Create a map of shortcodes to filenames from emoji.txt
627 File.read!(emoji_txt_path)
628 |> String.split("\n")
629 |> Enum.map(&String.trim/1)
630 |> Enum.map(fn line ->
631 case String.split(line, ~r/,\s*/) do
632 # This matches both strings with and without tags
633 # and we don't care about tags here
634 [name, file | _] -> {name, file}
635 _ -> nil
636 end
637 end)
638 |> Enum.filter(fn x -> not is_nil(x) end)
639 |> Enum.into(%{})
640 else
641 # If there's no emoji.txt, assume all files
642 # that are of certain extensions from the config are emojis and import them all
643 pack_extensions = Pleroma.Config.get!([:emoji, :pack_extensions])
644 Pleroma.Emoji.Loader.make_shortcode_to_file_map(dir_path, pack_extensions)
645 end
646 end
647 end