Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pleroma
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jeff
pleroma
Commits
eff725c3
Commit
eff725c3
authored
6 years ago
by
vaartis
Browse files
Options
Downloads
Patches
Plain Diff
Add a task to generate emoji packs
parent
1e44b547
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/mix/tasks/pleroma/emoji.ex
+103
-0
103 additions, 0 deletions
lib/mix/tasks/pleroma/emoji.ex
with
103 additions
and
0 deletions
lib/mix/tasks/pleroma/emoji.ex
+
103
−
0
View file @
eff725c3
...
...
@@ -131,6 +131,109 @@ defmodule Mix.Tasks.Pleroma.Emoji do
end
end
def
run
([
"gen-pack"
,
src
])
do
Application
.
ensure_all_started
(
:hackney
)
proposed_name
=
Path
.
basename
(
src
)
|>
Path
.
rootname
()
name
=
String
.
trim
(
IO
.
gets
(
"Pack name [
#{
proposed_name
}
]: "
))
# If there's no name, use the default one
name
=
if
String
.
length
(
name
)
>
0
,
do
:
name
,
else
:
proposed_name
license
=
String
.
trim
(
IO
.
gets
(
"License: "
))
homepage
=
String
.
trim
(
IO
.
gets
(
"Homepage: "
))
description
=
String
.
trim
(
IO
.
gets
(
"Description: "
))
proposed_files_name
=
"
#{
name
}
.json"
files_name
=
String
.
trim
(
IO
.
gets
(
"Save file list to [
#{
proposed_files_name
}
]: "
))
files_name
=
if
String
.
length
(
files_name
)
>
0
,
do
:
files_name
,
else
:
proposed_files_name
default_exts
=
[
".png"
,
".gif"
]
default_exts_str
=
Enum
.
join
(
default_exts
,
" "
)
exts
=
String
.
trim
(
IO
.
gets
(
"Emoji file extensions (separated with spaces) [
#{
default_exts_str
}
]: "
))
exts
=
if
String
.
length
(
exts
)
>
0
do
String
.
split
(
exts
,
" "
)
|>
Enum
.
filter
(
fn
e
->
(
e
|>
String
.
trim
()
|>
String
.
length
())
>
0
end
)
else
default_exts
end
IO
.
puts
"Downloading the pack and generating MD5"
binary_archive
=
Tesla
.
get!
(
src
)
.
body
archive_md5
=
:crypto
.
hash
(
:md5
,
binary_archive
)
|>
Base
.
encode16
()
IO
.
puts
"MD5 is
#{
archive_md5
}
"
pack_json
=
%{
name
=>
%{
license:
license
,
homepage:
homepage
,
description:
description
,
src:
src
,
src_md5:
archive_md5
,
files:
files_name
}
}
tmp_pack_dir
=
Path
.
join
(
System
.
tmp_dir!
(),
"emoji-pack-
#{
name
}
"
)
{
:ok
,
_
}
=
:zip
.
unzip
(
binary_archive
,
cwd:
tmp_pack_dir
)
emoji_map
=
find_all_emoji
(
tmp_pack_dir
,
exts
)
|>
Enum
.
map
(
&
Path
.
relative_to
(
&1
,
tmp_pack_dir
))
|>
Enum
.
map
(
fn
f
->
{
f
|>
Path
.
basename
()
|>
Path
.
rootname
(),
f
}
end
)
|>
Enum
.
into
(%{})
File
.
write!
(
files_name
,
Poison
.
encode!
(
emoji_map
,
pretty:
true
))
IO
.
puts
"""
#{files_name} has been created and contains the list of all found emojis in the pack.
Please review the files in the remove those not needed.
"""
if
File
.
exists?
(
"index.json"
)
do
existing_data
=
File
.
read!
(
"index.json"
)
|>
Poison
.
decode!
()
File
.
write!
(
"index.json"
,
Poison
.
encode!
(
Map
.
merge
(
existing_data
,
pack_json
),
pretty:
true
)
)
IO
.
puts
"index.json file has been update with the
#{
name
}
pack"
else
File
.
write!
(
"index.json"
,
Poison
.
encode!
(
pack_json
,
pretty:
true
))
IO
.
puts
"index.json has been created with the
#{
name
}
pack"
end
end
defp
find_all_emoji
(
dir
,
exts
)
do
Enum
.
reduce
(
File
.
ls!
(
dir
),
[],
fn
f
,
acc
->
filepath
=
Path
.
join
(
dir
,
f
)
if
File
.
dir?
(
filepath
)
do
acc
++
find_all_emoji
(
filepath
,
exts
)
else
acc
++
[
filepath
]
end
end
)
|>
Enum
.
filter
(
fn
f
->
Path
.
extname
(
f
)
in
exts
end
)
end
defp
fetch_manifest
(
from
)
do
Tesla
.
get!
(
from
)
.
body
|>
Poison
.
decode!
()
end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment