forked from rangle/augury
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crxmake.sh
executable file
·78 lines (61 loc) · 1.79 KB
/
crxmake.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/bash -e
#
# Package Augury into crx format Chrome extension
# (This will not be needed for official distribution)
# Based on https://developer.chrome.com/extensions/crx#scripts
node -v
npm -v
dir="temp"
key="key.pem"
name="augury"
files="manifest.json build images index.html frontend.html popup.html popup.js"
crx="$name.crx"
pub="$name.pub"
sig="$name.sig"
zip="$name.zip"
# assign build name to zip and crx file in circleci env
if [ $CIRCLE_BUILD_NUM ] || [ $CIRCLE_ARTIFACTS ]; then
crx="$name-$CIRCLE_BUILD_NUM.crx"
zip="$name-$CIRCLE_BUILD_NUM.zip"
fi
trap 'rm -f "$pub" "$sig"' EXIT
# copy all the files we need
rm -rf $dir
mkdir $dir
cp -R $files $dir/
rm $dir/build/*.map
# generate private key key.pem if it doesn't exist already
if [ ! -f $key ]; then
echo "$key doesn't exist."
openssl genrsa -out key.pem 1024
fi
# zip up the crx dir
cwd=$(pwd -P)
(cd "$dir" && zip -qr -9 -X "$cwd/$zip" .)
# signature
openssl sha1 -sha1 -binary -sign "$key" < "$zip" > "$sig"
# public key
openssl rsa -pubout -outform DER < "$key" > "$pub" 2>/dev/null
byte_swap () {
# Take "abcdefgh" and return it as "ghefcdab"
echo "${1:6:2}${1:4:2}${1:2:2}${1:0:2}"
}
crmagic_hex="4372 3234" # Cr24
version_hex="0200 0000" # 2
pub_len_hex=$(byte_swap $(printf '%08x\n' $(ls -l "$pub" | awk '{print $5}')))
sig_len_hex=$(byte_swap $(printf '%08x\n' $(ls -l "$sig" | awk '{print $5}')))
(
echo "$crmagic_hex $version_hex $pub_len_hex $sig_len_hex" | xxd -r -p
cat "$pub" "$sig" "$zip"
) > "$crx"
echo "Wrote $crx"
# move crx to artifacts folder in circleci
if [ $CIRCLE_ARTIFACTS ]; then
mv $crx $CIRCLE_ARTIFACTS
mv $zip $CIRCLE_ARTIFACTS
fi
echo "<script>window.location.href = 'https://s3.amazonaws.com/batarangle.io/$crx';</script>" > download.html
echo "Wrote file"
# clean up
rm -rf $dir
echo "Fin."