forked from keymanapp/keyboards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ci.sh
385 lines (317 loc) · 12 KB
/
ci.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
#!/bin/bash
function display_usage {
echo "
Usage: ci.sh [flags] [release|legacy|experimental[/k/keyboard]]
Flags:
-no-exe Prepare packages and .js files but not bundled installers
-upload-only Only upload keyboards already prepared
-zip-only Only prepare and transfer the database
-prepare-and-upload-only Prepare and upload keyboards but not database
"
exit 1
}
#
# Prevents 'clear' on exit of mingw64 bash shell
#
SHLVL=0
#
# Define paths; note Windows hosted bash assumptions for now
#
KEYBOARDROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
JQ="$KEYBOARDROOT/tools/jq-win64.exe"
RSYNC="$KEYBOARDROOT/tools/rsync.exe"
CI_CACHE="$KEYBOARDROOT/.cache"
if [ ! -z "$SEVENZ_HOME" ]; then
APP7Z="$SEVENZ_HOME/7z"
else
APP7Z="/c/Program Files/7-Zip/7z.exe"
fi
. "$KEYBOARDROOT/servervars.sh"
. "$KEYBOARDROOT/resources/util.sh"
. "$KEYBOARDROOT/resources/codesign.sh"
. "$KEYBOARDROOT/resources/rsync-tools.sh"
parse_args "$@"
function run {
if [ ! -d "$CI_CACHE" ]; then
mkdir "$CI_CACHE"
fi
if [[ $DO_UPLOAD_ONLY == true ]]; then
if [ ! -d "$CI_CACHE/upload" ]; then
mkdir "$CI_CACHE/upload"
fi
rsync_to_downloads_keyman_com "$CI_CACHE/upload/" keyboards/ true
exit 0
fi
if [[ $DO_ZIP_ONLY == true ]]; then
if [ ! -d "$CI_CACHE/data" ]; then
mkdir "$CI_CACHE/data"
fi
if [ ! -d "$CI_CACHE/upload" ]; then
mkdir "$CI_CACHE/upload"
fi
zip_keyboard_info
rsync_to_downloads_keyman_com "$CI_CACHE/data/" data/
exit 0
fi
if [ -d "$CI_CACHE/upload" ]; then
rm -rf "$CI_CACHE/upload"
fi
mkdir "$CI_CACHE/upload"
if [ -d "$CI_CACHE/data" ]; then
rm -rf "$CI_CACHE/data"
fi
mkdir "$CI_CACHE/data"
check_latest_stable_keymandesktop
check_and_download_keymandesktop_artifacts
upload_keyboards_by_target
if [[ $DO_DATA == true ]]; then
zip_keyboard_info
rsync_to_downloads_keyman_com "$CI_CACHE/data/" data/
fi
}
##
## Calls the Keyman Desktop downloads API to determine latest stable Keyman Desktop version
## on download server and populates shell variables from there
##
## GET https://downloads.keyman.com/api/version/windows/2.0
##
function check_latest_stable_keymandesktop {
local API_VERSION_JSON=`curl -f -s "$DOWNLOADS_KEYMAN_COM_URL/api/version/windows/2.0"`
if [ -z "$API_VERSION_JSON" ]; then
die "Unable to download version data"
fi
KEYMANDESKTOP_VERSION=`echo $API_VERSION_JSON | $JQ -r '.windows.stable.version'`
MSI_FILENAME=`echo $API_VERSION_JSON | $JQ -r '.windows.stable.files[].file | match("^keymandesktop.*.msi$").string'`
MSI_MD5=`echo $API_VERSION_JSON | $JQ -r '.windows.stable.files["'$MSI_FILENAME'"].md5'`
SETUP_MD5=`echo $API_VERSION_JSON | $JQ -r '.windows.stable.files["setup.exe"].md5'`
if [ -z "$KEYMANDESKTOP_VERSION" ]; then
die "Keyman Desktop version could not be extracted from $API_VERSION_JSON"
fi
if [ -z "$MSI_FILENAME" ]; then
die "MSI filename could not be extracted from $API_VERSION_JSON"
fi
SETUP_EXE_URL=$DOWNLOADS_KEYMAN_COM_URL/windows/stable/$KEYMANDESKTOP_VERSION/setup.exe
MSI_URL=$DOWNLOADS_KEYMAN_COM_URL/windows/stable/$KEYMANDESKTOP_VERSION/$MSI_FILENAME
}
##
## Checks if the files in the CI_CACHE are out of date, and if so, downloads an updated
## version from downloads.keyman.com
##
## GET https://downloads.keyman.com/windows/stable/<version>/setup.exe
## GET https://downloads.keyman.com/windows/stable/<version>/keymandesktop[num].msi
## (11.0 and later versions do not include version number)
##
function check_and_download_keymandesktop_artifacts {
if [ ! -d "$CI_CACHE/$KEYMANDESKTOP_VERSION" ]; then
mkdir "$CI_CACHE/$KEYMANDESKTOP_VERSION"
fi
check_and_download $KEYMANDESKTOP_VERSION/setup.exe $SETUP_MD5 "$SETUP_EXE_URL"
check_and_download $KEYMANDESKTOP_VERSION/$MSI_FILENAME $MSI_MD5 "$MSI_URL"
}
##
## Main function
##
function upload_keyboards_by_target {
if [[ "$TARGET" ]]; then
if [[ "$TARGET" == */* ]] && [[ (-d "$TARGET") ]]; then
group=$(cut -d / -f 1 <<< "$TARGET")
echo "${t_grn}--- Only uploading $group $TARGET ---${t_end}"
upload_keyboard $group "$TARGET"
elif [[ "$TARGET" == "release" ]] || [[ "$TARGET" == "legacy" ]] || [[ "$TARGET" == "experimental" ]]; then
# Assuming release|legacy|experimental
echo "${t_grn}--- Only uploading $TARGET ---${t_end}"
upload_keyboards "$TARGET"
else
echo "Invalid $TARGET"
display_usage
fi
else
upload_keyboards release
upload_keyboards legacy
upload_keyboards experimental
fi
rsync_to_downloads_keyman_com "$CI_CACHE/upload/" keyboards/ true
}
##
## Checks if a specific file is missing or has a different md5, and if so, downloads it
## from the URL given
##
function check_and_download {
local filename=$1
local md5=$2
local url=$3
if [ -f "$CI_CACHE/$filename" ]; then
local md5=$(md5sum "$CI_CACHE/$filename" | cut -f 1 -d ' ')
if [ "$md5" == "$2" ]; then
return
fi
fi
echo "Downloading $url"
curl -f -# -o "$CI_CACHE/$filename" "$url" || die "Unable to download $url"
}
##
## Prepare for upload puts a file into the upload cache
## in preparation for it being rsync'd to the server
##
function prepare_for_upload {
local source_filename=$1
local upload_filename=$2
local upload_path=`dirname "$upload_filename"`
mkdir -p "$CI_CACHE/upload/$upload_path"
cp "$source_filename" "$CI_CACHE/upload/$upload_filename"
}
##
## Prepares a single keyboard for upload, including building
## the bundled installer for Windows
##
function upload_keyboard {
local group=$1
local keyboard=$2
local base_keyboard=$(basename "$keyboard")
local shortname=$(basename $(dirname "$keyboard"))
local buildpath=$KEYBOARDROOT/$group/$shortname/$base_keyboard/build
local keyboard_info=$buildpath/$base_keyboard.keyboard_info
echo "${t_grn}Uploading $keyboard${t_end}"
[ -f "$keyboard_info" ] || die "Failed to locate $keyboard_info"
local package_filename=`cat "$keyboard_info" | $JQ -r '.packageFilename'`
local js_filename=`cat "$keyboard_info" | $JQ -r '.jsFilename'`
local min_required_version=`cat "$keyboard_info" | $JQ -r '.minKeymanVersion'`
local platform_windows=`cat "$keyboard_info" | $JQ -r '.platformSupport.windows'`
# jq returns 'null' if the entry is missing, instead of ''
if [[ $package_filename == "null" ]]; then
package_filename=
else
[ -f "$buildpath/$package_filename" ] || die "Failed to locate $buildpath/$package_filename"
fi
if [[ $js_filename == "null" ]]; then
js_filename=
else
[ -f "$buildpath/$js_filename" ] || die "Failed to locate $buildpath/$js_filename"
fi
local package_version=`cat "$keyboard_info" | $JQ -r '.version'`
local package_name=`cat "$keyboard_info" | $JQ -r '.name'`
local installer_filename=keymandesktop-$KEYMANDESKTOP_VERSION-$base_keyboard-$package_version.exe
local package_upload_path=$base_keyboard/$package_version/$package_filename
local keyboard_info_upload_path=$base_keyboard/$package_version/$base_keyboard.keyboard_info
local installer_upload_path=$base_keyboard/$package_version/$installer_filename
local js_upload_path=$base_keyboard/$package_version/$js_filename
local package_url=$DOWNLOADS_KEYMAN_COM_URL/keyboards/$package_upload_path
local keyboard_info_url=$DOWNLOADS_KEYMAN_COM_URL/keyboards/$keyboard_info_upload_path
local installer_url=$DOWNLOADS_KEYMAN_COM_URL/keyboards/$installer_upload_path
local js_url=$DOWNLOADS_KEYMAN_COM_URL/keyboards/$js_upload_path
echo "${t_grn}Package name: $package_name${t_end}"
prepare_for_upload "$buildpath/$base_keyboard.keyboard_info" "$keyboard_info_upload_path"
if [[ ! -z $js_filename ]]; then
prepare_for_upload "$buildpath/$js_filename" "$js_upload_path"
fi
if [[ ! -z $package_filename ]]; then
prepare_for_upload "$buildpath/$package_filename" "$package_upload_path"
fi
if [[ $DO_EXE == true ]]; then
if [[ ${package_filename##*.} == kmp ]] && [[ "$platform_windows" == full || "$platform_windows" == basic || "$platform_windows" == dictionary ]]; then
# We only upload a combined installer for .kmp files that have a Windows target
if $(verlte "$min_required_version" "$KEYMANDESKTOP_VERSION"); then
create_package_installer "$buildpath" "$buildpath/$installer_filename" "$buildpath/$package_filename" "$package_name" "$package_version"
prepare_for_upload "$buildpath/$installer_filename" "$installer_upload_path"
else
echo "$package_name requires minimum of Keyman Desktop $min_required_version, so a bundled installer will not be created with version $KEYMANDESKTOP_VERSION."
fi
fi
fi
}
##
## Create a .exe installer from a package file for the selected Keyman Desktop version
##
function create_package_installer {
local buildpath=$1
local exe_filename=$2
local kmp_filename=$3
local package_name=$4
local package_version=$5
local kmp_basename=`basename "$kmp_filename"`
# Generate installer metadata
cat > "$buildpath/setup.inf" <<END
[Setup]
Version=$KEYMANDESKTOP_VERSION
OnlineProductID=20
MSIFileName=$MSI_FILENAME
MSIOptions=
Title=Keyman Desktop $KEYMANDESKTOP_VERSION
License=license.html
[Packages]
$kmp_basename=$package_name $package_version
[Strings]
END
# Construct the archive
if [[ -f "$buildpath/setup.zip" ]]; then
rm "$buildpath/setup.zip"
fi
"$APP7Z" a "$buildpath/setup.zip" "$CI_CACHE/$KEYMANDESKTOP_VERSION/$MSI_FILENAME" "$buildpath/setup.inf" "$kmp_filename" || die "Unable to build archive at $buildpath"
cat "$CI_CACHE/$KEYMANDESKTOP_VERSION/setup.exe" "$buildpath/setup.zip" > "$exe_filename" || die "Unable to build sfx at $buildpath"
rm "$buildpath/setup.zip"
rm "$buildpath/setup.inf"
# Codesign the archive
codesign "$exe_filename" "Keyman Desktop Setup"
}
##
## (Tweaked clone of build_keyboards in compile.sh)
##
function upload_keyboards {
# $1 = path to build keyboards
# for each keyboard, if a build.sh file exists, call it, otherwise, run the default
# build based on the folder name and location.
# excluded folders are: shared, packages and template
local group=$1
local excluded_folders=" shared packages template "
echo "Uploading keyboards for $1"
local shortname
for shortname in "$KEYBOARDROOT/$group/"*/ ; do
local base_shortname=$(basename "$shortname")
if [[ "$base_shortname" == '*' ]]; then
return 0
fi
if [[ "$excluded_folders" == *" $base_shortname "* ]]; then
echo "- Skipping folder $group/$base_shortname"
else
if [[ "$base_shortname" < "$START" ]]; then
echo "- Skipping folder $group/$base_shortname, before $START"
else
echo "- Uploading $group/$base_shortname"
local keyboard
for keyboard in "$shortname"*/ ; do
upload_keyboard "$group" "$keyboard"
done
fi
fi
done
#
# If a packages/ folder exists, we now need to build it. We have to wait until the keyboards are built because it
# depends on files created by the keyboards
#
if [ -d "$KEYBOARDROOT/$group/packages" ]; then
echo "- Building $group/packages"
local package
for package in "$KEYBOARDROOT/$group/packages/"*/ ; do
upload_keyboard "$group" "$package"
done
fi
return 0
}
##
## zips all .keyboard_info files from .cache/upload/ into .cache/data/keyboard_info.zip
##
function zip_keyboard_info {
# We use an @list file to give a specific list of files to
# 7z so that it does not include pathnames in the archive
# The "./" on the front of the search is also needed to force 7Z to not
# include pathnames in the archive
local files=(./.cache/upload/*/*/*.keyboard_info)
printf "%s\n" "${files[@]}" > .cache/keyboard_info.list
"$APP7Z" a ".cache/data/keyboard_info.zip" @.cache/keyboard_info.list
rm .cache/keyboard_info.list
}
############################################################################################
run
############################################################################################
# EOF
############################################################################################