2019-04-17 20:54:09 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-04-17 20:54:09 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Mix.Tasks.Pleroma.Emoji do
|
|
|
|
use Mix.Task
|
2020-02-11 07:12:57 +00:00
|
|
|
import Mix.Pleroma
|
2019-04-17 20:54:09 +00:00
|
|
|
|
2019-04-20 07:57:31 +00:00
|
|
|
@shortdoc "Manages emoji packs"
|
2019-10-03 10:59:49 +00:00
|
|
|
@moduledoc File.read!("docs/administration/CLI_tasks/emoji.md")
|
2019-04-17 20:54:09 +00:00
|
|
|
|
2019-04-18 07:57:20 +00:00
|
|
|
def run(["ls-packs" | args]) do
|
2020-02-11 07:12:57 +00:00
|
|
|
start_pleroma()
|
2019-04-17 20:54:09 +00:00
|
|
|
|
2019-04-18 07:57:20 +00:00
|
|
|
{options, [], []} = parse_global_opts(args)
|
|
|
|
|
2020-04-06 07:45:25 +00:00
|
|
|
url_or_path = options[:manifest] || default_manifest()
|
2020-05-28 16:41:34 +00:00
|
|
|
manifest = fetch_and_decode(url_or_path)
|
2019-04-17 20:54:09 +00:00
|
|
|
|
|
|
|
Enum.each(manifest, fn {name, info} ->
|
|
|
|
to_print = [
|
|
|
|
{"Name", name},
|
|
|
|
{"Homepage", info["homepage"]},
|
|
|
|
{"Description", info["description"]},
|
|
|
|
{"License", info["license"]},
|
|
|
|
{"Source", info["src"]}
|
|
|
|
]
|
|
|
|
|
|
|
|
for {param, value} <- to_print do
|
|
|
|
IO.puts(IO.ANSI.format([:bright, param, :normal, ": ", value]))
|
|
|
|
end
|
2019-04-19 21:22:11 +00:00
|
|
|
|
|
|
|
# A newline
|
|
|
|
IO.puts("")
|
2019-04-17 20:54:09 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2019-04-18 07:57:20 +00:00
|
|
|
def run(["get-packs" | args]) do
|
2020-02-11 07:12:57 +00:00
|
|
|
start_pleroma()
|
2019-04-17 20:54:09 +00:00
|
|
|
|
2019-04-18 07:57:20 +00:00
|
|
|
{options, pack_names, []} = parse_global_opts(args)
|
|
|
|
|
2020-04-06 07:45:25 +00:00
|
|
|
url_or_path = options[:manifest] || default_manifest()
|
2019-04-18 12:32:18 +00:00
|
|
|
|
2020-05-28 16:41:34 +00:00
|
|
|
manifest = fetch_and_decode(url_or_path)
|
2019-04-18 07:57:20 +00:00
|
|
|
|
|
|
|
for pack_name <- pack_names do
|
|
|
|
if Map.has_key?(manifest, pack_name) do
|
|
|
|
pack = manifest[pack_name]
|
2020-05-28 16:41:34 +00:00
|
|
|
src = pack["src"]
|
2019-04-18 07:57:20 +00:00
|
|
|
|
|
|
|
IO.puts(
|
|
|
|
IO.ANSI.format([
|
|
|
|
"Downloading ",
|
|
|
|
:bright,
|
|
|
|
pack_name,
|
|
|
|
:normal,
|
|
|
|
" from ",
|
|
|
|
:underline,
|
2020-05-28 16:41:34 +00:00
|
|
|
src
|
2019-04-18 07:57:20 +00:00
|
|
|
])
|
2019-04-17 20:54:09 +00:00
|
|
|
)
|
|
|
|
|
2020-05-28 16:41:34 +00:00
|
|
|
{:ok, binary_archive} = fetch(src)
|
2019-04-21 19:19:19 +00:00
|
|
|
archive_sha = :crypto.hash(:sha256, binary_archive) |> Base.encode16()
|
2019-04-18 12:46:07 +00:00
|
|
|
|
2019-04-21 19:19:19 +00:00
|
|
|
sha_status_text = ["SHA256 of ", :bright, pack_name, :normal, " source file is ", :bright]
|
2019-04-18 15:09:43 +00:00
|
|
|
|
2019-04-21 19:19:19 +00:00
|
|
|
if archive_sha == String.upcase(pack["src_sha256"]) do
|
|
|
|
IO.puts(IO.ANSI.format(sha_status_text ++ [:green, "OK"]))
|
2019-04-18 12:46:07 +00:00
|
|
|
else
|
2019-04-21 19:19:19 +00:00
|
|
|
IO.puts(IO.ANSI.format(sha_status_text ++ [:red, "BAD"]))
|
2019-04-18 12:46:07 +00:00
|
|
|
|
2019-04-21 19:19:19 +00:00
|
|
|
raise "Bad SHA256 for #{pack_name}"
|
2019-04-18 12:46:07 +00:00
|
|
|
end
|
2019-04-18 07:57:20 +00:00
|
|
|
|
2020-05-28 16:41:34 +00:00
|
|
|
# The location specified in files should be in the same directory
|
|
|
|
files_loc =
|
2020-04-06 07:45:25 +00:00
|
|
|
url_or_path
|
|
|
|
|> Path.dirname()
|
|
|
|
|> Path.join(pack["files"])
|
2019-04-18 12:32:18 +00:00
|
|
|
|
|
|
|
IO.puts(
|
|
|
|
IO.ANSI.format([
|
|
|
|
"Fetching the file list for ",
|
|
|
|
:bright,
|
|
|
|
pack_name,
|
|
|
|
:normal,
|
|
|
|
" from ",
|
|
|
|
:underline,
|
2020-05-28 16:41:34 +00:00
|
|
|
files_loc
|
2019-04-18 12:32:18 +00:00
|
|
|
])
|
|
|
|
)
|
|
|
|
|
2020-05-28 16:41:34 +00:00
|
|
|
files = fetch_and_decode(files_loc)
|
2019-04-18 12:32:18 +00:00
|
|
|
|
2019-04-18 07:57:20 +00:00
|
|
|
IO.puts(IO.ANSI.format(["Unpacking ", :bright, pack_name]))
|
|
|
|
|
|
|
|
pack_path =
|
|
|
|
Path.join([
|
|
|
|
Pleroma.Config.get!([:instance, :static_dir]),
|
|
|
|
"emoji",
|
|
|
|
pack_name
|
|
|
|
])
|
|
|
|
|
|
|
|
files_to_unzip =
|
|
|
|
Enum.map(
|
2019-04-18 12:32:18 +00:00
|
|
|
files,
|
2019-04-18 07:57:20 +00:00
|
|
|
fn {_, f} -> to_charlist(f) end
|
|
|
|
)
|
|
|
|
|
|
|
|
{:ok, _} =
|
|
|
|
:zip.unzip(binary_archive,
|
|
|
|
cwd: pack_path,
|
|
|
|
file_list: files_to_unzip
|
|
|
|
)
|
|
|
|
|
2019-09-30 13:04:30 +00:00
|
|
|
IO.puts(IO.ANSI.format(["Writing pack.json for ", :bright, pack_name]))
|
|
|
|
|
|
|
|
pack_json = %{
|
|
|
|
pack: %{
|
|
|
|
"license" => pack["license"],
|
|
|
|
"homepage" => pack["homepage"],
|
|
|
|
"description" => pack["description"],
|
|
|
|
"fallback-src" => pack["src"],
|
|
|
|
"fallback-src-sha256" => pack["src_sha256"],
|
|
|
|
"share-files" => true
|
|
|
|
},
|
|
|
|
files: files
|
|
|
|
}
|
|
|
|
|
|
|
|
File.write!(Path.join(pack_path, "pack.json"), Jason.encode!(pack_json, pretty: true))
|
2019-04-18 07:57:20 +00:00
|
|
|
else
|
|
|
|
IO.puts(IO.ANSI.format([:bright, :red, "No pack named \"#{pack_name}\" found"]))
|
|
|
|
end
|
2019-04-17 20:54:09 +00:00
|
|
|
end
|
|
|
|
end
|
2019-04-18 12:47:49 +00:00
|
|
|
|
2020-04-06 07:45:25 +00:00
|
|
|
def run(["gen-pack" | args]) do
|
2020-02-11 07:12:57 +00:00
|
|
|
start_pleroma()
|
2019-04-18 14:02:22 +00:00
|
|
|
|
2020-04-06 07:45:25 +00:00
|
|
|
{opts, [src], []} =
|
|
|
|
OptionParser.parse(
|
|
|
|
args,
|
|
|
|
strict: [
|
|
|
|
name: :string,
|
|
|
|
license: :string,
|
|
|
|
homepage: :string,
|
|
|
|
description: :string,
|
|
|
|
files: :string,
|
|
|
|
extensions: :string
|
|
|
|
]
|
|
|
|
)
|
2019-04-18 14:02:22 +00:00
|
|
|
|
2020-04-06 07:45:25 +00:00
|
|
|
proposed_name = Path.basename(src) |> Path.rootname()
|
|
|
|
name = get_option(opts, :name, "Pack name:", proposed_name)
|
|
|
|
license = get_option(opts, :license, "License:")
|
|
|
|
homepage = get_option(opts, :homepage, "Homepage:")
|
|
|
|
description = get_option(opts, :description, "Description:")
|
2019-04-18 14:02:22 +00:00
|
|
|
|
2020-04-06 07:45:25 +00:00
|
|
|
proposed_files_name = "#{name}_files.json"
|
|
|
|
files_name = get_option(opts, :files, "Save file list to:", proposed_files_name)
|
2019-04-18 14:02:22 +00:00
|
|
|
|
|
|
|
default_exts = [".png", ".gif"]
|
2019-04-18 15:09:43 +00:00
|
|
|
|
2020-04-06 07:45:25 +00:00
|
|
|
custom_exts =
|
|
|
|
get_option(
|
|
|
|
opts,
|
|
|
|
:extensions,
|
|
|
|
"Emoji file extensions (separated with spaces):",
|
|
|
|
Enum.join(default_exts, " ")
|
2019-04-18 15:09:43 +00:00
|
|
|
)
|
2020-04-06 07:45:25 +00:00
|
|
|
|> String.split(" ", trim: true)
|
2019-04-18 14:02:22 +00:00
|
|
|
|
2019-04-18 15:09:43 +00:00
|
|
|
exts =
|
2020-04-06 07:45:25 +00:00
|
|
|
if MapSet.equal?(MapSet.new(default_exts), MapSet.new(custom_exts)) do
|
2019-04-18 15:09:43 +00:00
|
|
|
default_exts
|
2020-04-06 07:45:25 +00:00
|
|
|
else
|
|
|
|
custom_exts
|
2019-04-18 15:09:43 +00:00
|
|
|
end
|
|
|
|
|
2020-04-06 07:45:25 +00:00
|
|
|
IO.puts("Using #{Enum.join(exts, " ")} extensions")
|
|
|
|
|
2019-04-21 19:19:19 +00:00
|
|
|
IO.puts("Downloading the pack and generating SHA256")
|
2019-04-18 14:02:22 +00:00
|
|
|
|
2019-05-08 12:05:25 +00:00
|
|
|
binary_archive = Tesla.get!(client(), src).body
|
2019-04-21 19:19:19 +00:00
|
|
|
archive_sha = :crypto.hash(:sha256, binary_archive) |> Base.encode16()
|
2019-04-18 14:02:22 +00:00
|
|
|
|
2019-04-21 19:19:19 +00:00
|
|
|
IO.puts("SHA256 is #{archive_sha}")
|
2019-04-18 14:02:22 +00:00
|
|
|
|
|
|
|
pack_json = %{
|
|
|
|
name => %{
|
|
|
|
license: license,
|
|
|
|
homepage: homepage,
|
|
|
|
description: description,
|
|
|
|
src: src,
|
2019-04-21 19:19:19 +00:00
|
|
|
src_sha256: archive_sha,
|
2019-04-18 14:02:22 +00:00
|
|
|
files: files_name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp_pack_dir = Path.join(System.tmp_dir!(), "emoji-pack-#{name}")
|
2019-04-18 15:09:43 +00:00
|
|
|
|
2020-02-25 14:34:56 +00:00
|
|
|
{:ok, _} = :zip.unzip(binary_archive, cwd: String.to_charlist(tmp_pack_dir))
|
2019-04-18 14:02:22 +00:00
|
|
|
|
2019-08-28 18:32:44 +00:00
|
|
|
emoji_map = Pleroma.Emoji.Loader.make_shortcode_to_file_map(tmp_pack_dir, exts)
|
2019-04-18 15:04:02 +00:00
|
|
|
|
2019-05-13 20:37:38 +00:00
|
|
|
File.write!(files_name, Jason.encode!(emoji_map, pretty: true))
|
2019-04-18 14:02:22 +00:00
|
|
|
|
2019-04-18 15:09:43 +00:00
|
|
|
IO.puts("""
|
2019-04-18 14:02:22 +00:00
|
|
|
|
|
|
|
#{files_name} has been created and contains the list of all found emojis in the pack.
|
2020-04-06 07:45:25 +00:00
|
|
|
Please review the files in the pack and remove those not needed.
|
2019-04-18 15:09:43 +00:00
|
|
|
""")
|
2019-04-18 14:02:22 +00:00
|
|
|
|
2020-04-06 07:45:25 +00:00
|
|
|
pack_file = "#{name}.json"
|
|
|
|
|
|
|
|
if File.exists?(pack_file) do
|
|
|
|
existing_data = File.read!(pack_file) |> Jason.decode!()
|
2019-04-18 14:02:22 +00:00
|
|
|
|
|
|
|
File.write!(
|
2020-04-06 07:45:25 +00:00
|
|
|
pack_file,
|
2019-05-13 20:37:38 +00:00
|
|
|
Jason.encode!(
|
2019-04-18 14:02:22 +00:00
|
|
|
Map.merge(
|
|
|
|
existing_data,
|
|
|
|
pack_json
|
|
|
|
),
|
|
|
|
pretty: true
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-04-06 07:45:25 +00:00
|
|
|
IO.puts("#{pack_file} has been updated with the #{name} pack")
|
2019-04-18 14:02:22 +00:00
|
|
|
else
|
2020-04-06 07:45:25 +00:00
|
|
|
File.write!(pack_file, Jason.encode!(pack_json, pretty: true))
|
2019-04-18 14:02:22 +00:00
|
|
|
|
2020-04-06 07:45:25 +00:00
|
|
|
IO.puts("#{pack_file} has been created with the #{name} pack")
|
2019-04-18 14:02:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-06-10 18:02:08 +00:00
|
|
|
def run(["reload"]) do
|
|
|
|
start_pleroma()
|
|
|
|
Pleroma.Emoji.reload()
|
|
|
|
IO.puts("Emoji packs have been reloaded.")
|
|
|
|
end
|
|
|
|
|
2020-05-28 16:41:34 +00:00
|
|
|
defp fetch_and_decode(from) do
|
|
|
|
with {:ok, json} <- fetch(from) do
|
|
|
|
Jason.decode!(json)
|
|
|
|
end
|
2019-04-18 12:47:49 +00:00
|
|
|
end
|
|
|
|
|
2020-05-28 16:41:34 +00:00
|
|
|
defp fetch("http" <> _ = from) do
|
|
|
|
with {:ok, %{body: body}} <- Tesla.get(client(), from) do
|
|
|
|
{:ok, body}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp fetch(path), do: File.read(path)
|
|
|
|
|
2019-04-18 12:47:49 +00:00
|
|
|
defp parse_global_opts(args) do
|
|
|
|
OptionParser.parse(
|
|
|
|
args,
|
|
|
|
strict: [
|
|
|
|
manifest: :string
|
|
|
|
],
|
|
|
|
aliases: [
|
|
|
|
m: :manifest
|
|
|
|
]
|
|
|
|
)
|
|
|
|
end
|
2019-05-08 12:05:25 +00:00
|
|
|
|
|
|
|
defp client do
|
|
|
|
middleware = [
|
|
|
|
{Tesla.Middleware.FollowRedirects, [max_redirects: 3]}
|
|
|
|
]
|
|
|
|
|
|
|
|
Tesla.client(middleware)
|
|
|
|
end
|
2019-06-14 15:45:05 +00:00
|
|
|
|
|
|
|
defp default_manifest, do: Pleroma.Config.get!([:emoji, :default_manifest])
|
2019-04-17 20:54:09 +00:00
|
|
|
end
|