forked from eclipse-che/che
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli.sh
executable file
·961 lines (841 loc) · 30.5 KB
/
cli.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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
#!/bin/bash
# Copyright (c) 2012-2016 Codenvy, S.A.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Tyler Jewell - Initial Implementation
#
init_global_variables() {
DEFAULT_CHE_PRODUCT_NAME="ECLIPSE CHE"
DEFAULT_CHE_LAUNCHER_IMAGE_NAME="eclipse/che-launcher"
DEFAULT_CHE_SERVER_IMAGE_NAME="eclipse/che-server"
DEFAULT_CHE_DIR_IMAGE_NAME="eclipse/che-dir"
DEFAULT_CHE_MOUNT_IMAGE_NAME="eclipse/che-mount"
DEFAULT_CHE_ACTION_IMAGE_NAME="eclipse/che-action"
DEFAULT_CHE_TEST_IMAGE_NAME="eclipse/che-test"
DEFAULT_CHE_DEV_IMAGE_NAME="eclipse/che-dev"
DEFAULT_CHE_SERVER_CONTAINER_NAME="che-server"
DEFAULT_CHE_VERSION="5.0.0-latest"
DEFAULT_CHE_UTILITY_VERSION="nightly"
DEFAULT_CHE_CLI_ACTION="help"
DEFAULT_IS_INTERACTIVE="true"
DEFAULT_IS_PSEUDO_TTY="true"
DEFAULT_CHE_DATA="/home/user/che"
CHE_PRODUCT_NAME=${CHE_PRODUCT_NAME:-${DEFAULT_CHE_PRODUCT_NAME}}
CHE_LAUNCHER_IMAGE_NAME=${CHE_LAUNCHER_IMAGE_NAME:-${DEFAULT_CHE_LAUNCHER_IMAGE_NAME}}
CHE_SERVER_IMAGE_NAME=${CHE_SERVER_IMAGE_NAME:-${DEFAULT_CHE_SERVER_IMAGE_NAME}}
CHE_DIR_IMAGE_NAME=${CHE_DIR_IMAGE_NAME:-${DEFAULT_CHE_DIR_IMAGE_NAME}}
CHE_MOUNT_IMAGE_NAME=${CHE_MOUNT_IMAGE_NAME:-${DEFAULT_CHE_MOUNT_IMAGE_NAME}}
CHE_ACTION_IMAGE_NAME=${CHE_ACTION_IMAGE_NAME:-${DEFAULT_CHE_ACTION_IMAGE_NAME}}
CHE_TEST_IMAGE_NAME=${CHE_TEST_IMAGE_NAME:-${DEFAULT_CHE_TEST_IMAGE_NAME}}
CHE_DEV_IMAGE_NAME=${CHE_DEV_IMAGE_NAME:-${DEFAULT_CHE_DEV_IMAGE_NAME}}
CHE_SERVER_CONTAINER_NAME=${CHE_SERVER_CONTAINER_NAME:-${DEFAULT_CHE_SERVER_CONTAINER_NAME}}
CHE_VERSION=${CHE_VERSION:-${DEFAULT_CHE_VERSION}}
CHE_UTILITY_VERSION=${CHE_UTILITY_VERSION:-${DEFAULT_CHE_UTILITY_VERSION}}
CHE_CLI_ACTION=${CHE_CLI_ACTION:-${DEFAULT_CHE_CLI_ACTION}}
CHE_IS_INTERACTIVE=${CHE_IS_INTERACTIVE:-${DEFAULT_IS_INTERACTIVE}}
CHE_IS_PSEUDO_TTY=${CHE_IS_PSEUDO_TTY:-${DEFAULT_IS_PSEUDO_TTY}}
CHE_DATA=${CHE_DATA:-${DEFAULT_CHE_DATA}}
GLOBAL_NAME_MAP=$(docker info | grep "Name:" | cut -d" " -f2)
GLOBAL_HOST_ARCH=$(docker version --format {{.Client}} | cut -d" " -f5)
GLOBAL_UNAME=$(docker run --rm alpine sh -c "uname -r")
GLOBAL_GET_DOCKER_HOST_IP=$(get_docker_host_ip)
if is_boot2docker && has_docker_for_windows_client; then
if [[ "${CHE_DATA,,}" != *"${USERPROFILE,,}"* ]]; then
CHE_DATA=$(get_mount_path "${USERPROFILE}/.${CHE_MINI_PRODUCT_NAME}/")
warning "Boot2docker for Windows - CHE_DATA set to $CHE_DATA"
fi
fi
USAGE="
Usage: ${CHE_MINI_PRODUCT_NAME} [COMMAND]
start Starts ${CHE_MINI_PRODUCT_NAME} server
stop Stops ${CHE_MINI_PRODUCT_NAME} server
restart Restart ${CHE_MINI_PRODUCT_NAME} server
update [--force] Installs version, respecting CHE_VERSION & CHE_UTILITY_VERSION
profile add <name> Add a profile to ~/.${CHE_MINI_PRODUCT_NAME}/
profile set <name> Set this profile as the default for ${CHE_MINI_PRODUCT_NAME} CLI
profile unset Removes the default profile - leaves it unset
profile rm <name> Remove this profile from ~/.${CHE_MINI_PRODUCT_NAME}/
profile update <name> Update profile in ~/.${CHE_MINI_PRODUCT_NAME}/
profile info <name> Print the profile configuration
profile list List available profiles
ssh <wksp-name> [machine-name] SSH to a workspace if SSH agent enabled
mount <wksp-id or wksp-name> Synchronize workspace with current working directory
dir init Initialize directory with ${CHE_MINI_PRODUCT_NAME} configuration
dir up Create workspace from source in current directory
dir down Stop workspace running in current directory
dir status Display status of ${CHE_MINI_PRODUCT_NAME} in current directory
dir ssh Make SSH connection into workspace mapped to current directory
action <action-name> [--help] Start action on ${CHE_MINI_PRODUCT_NAME} instance
compile <mvn-command> SDK - Builds Che source code or modules
test <test-name> [--help] Start test on ${CHE_MINI_PRODUCT_NAME} instance
info [ --all Run all debugging tests
--server Run ${CHE_MINI_PRODUCT_NAME} launcher and server debugging tests
--networking Test connectivity between ${CHE_MINI_PRODUCT_NAME} sub-systems
--cli Print CLI (this program) debugging info
--create [<url>] Test creating a workspace and project in ${CHE_MINI_PRODUCT_NAME}
[<user>]
[<pass>] ]
Variables:
CHE_VERSION Version of Che to run
CHE_PORT External port of Che server
CHE_HOST_IP IP address Che server binds to - must set for external users
CHE_DATA Where workspaces and Che prefs are stored
CHE_HOSTNAME External hostname of Che server
CHE_CONF Folder for custom che.properties file
CHE_RESTART_POLICY Che server Docker restart policy if container exited
CHE_USER User ID of the Che server inside its container
CHE_ASSEMBLY Path to a Che assembly to use instead of binary in container
CHE_LOG_LEVEL Logging level for Che server - either debug or info
CHE_EXTRA_VOLUME_MOUNT Folders to mount from host into Che workspaces
CHE_PROPERTY_<> One time use properties passed to Che - see docs
CHE_UTILITY_VERSION Version of Che launcher, mount, dev, action to run
CHE_CLI_VERSION Version of CLI to run
CHE_PRODUCT_NAME Pretty name used by CLI in INFO statements
CHE_MINI_PRODUCT_NAME Pretty short name used by CLI in INFO statements
CHE_LAUNCHER_IMAGE_NAME Docker image for the Che launcher
CHE_SERVER_IMAGE_NAME Docker image for the Che server
CHE_DIR_IMAGE_NAME Docker image for Chedir
CHE_MOUNT_IMAGE_NAME Docker image used for local IDE mount and sync
CHE_ACTION_IMAGE_NAME Docker image used for Che actions
CHE_DEV_IMAGE_NAME Docker image used to compile and package Che source code
CHE_SERVER_CONTAINER_NAME Pretty container name given for the Che server container
CHE_IS_INTERACTIVE Passes -i into Docker run
CHE_IS_PSEUDO_TTY Passes -t into Docker run
CHE_DEBUG_SERVER Launches Che server with JPDA activated
CHE_DEBUG_SERVER_PORT Port JPDA binds itself to
"
}
usage () {
debug $FUNCNAME
printf "%s" "${USAGE}"
}
parse_command_line () {
debug $FUNCNAME
if [ $# -eq 0 ]; then
CHE_CLI_ACTION="help"
else
case $1 in
start|stop|restart|update|info|profile|action|dir|ssh|mount|compile|test|help|-h|--help)
CHE_CLI_ACTION=$1
;;
*)
# unknown option
error "You passed an unknown command line option."
;;
esac
fi
}
execute_cli() {
case ${CHE_CLI_ACTION} in
start|stop|restart)
shift
load_profile
execute_che_launcher "$@"
;;
profile)
execute_profile "$@"
;;
dir)
# remove "dir" arg by shifting it
shift
load_profile
execute_che_dir "$@"
;;
action)
# remove "action" arg by shifting it
shift
load_profile
execute_che_action "$@"
;;
update)
shift
load_profile
update_che_cli
update_che_image "$@" ${CHE_SERVER_IMAGE_NAME} ${CHE_VERSION}
update_che_image "$@" ${CHE_LAUNCHER_IMAGE_NAME} ${CHE_UTILITY_VERSION}
update_che_image "$@" ${CHE_MOUNT_IMAGE_NAME} ${CHE_UTILITY_VERSION}
update_che_image "$@" ${CHE_DIR_IMAGE_NAME} ${CHE_UTILITY_VERSION}
update_che_image "$@" ${CHE_ACTION_IMAGE_NAME} ${CHE_UTILITY_VERSION}
update_che_image "$@" ${CHE_TEST_IMAGE_NAME} ${CHE_UTILITY_VERSION}
update_che_image "$@" ${CHE_DEV_IMAGE_NAME} ${CHE_UTILITY_VERSION}
;;
ssh)
shift
load_profile
execute_che_action "workspace-ssh" "$@"
;;
mount)
shift
load_profile
execute_che_mount "$@"
;;
compile)
# remove "compile" arg by shifting it
shift
load_profile
execute_che_compile "$@"
;;
test)
# remove "test" arg by shifting it
shift
load_profile
execute_che_test "$@"
;;
info)
load_profile
execute_che_info "$@"
;;
help)
usage
;;
esac
}
docker_exec() {
debug $FUNCNAME
if has_docker_for_windows_client; then
MSYS_NO_PATHCONV=1 docker.exe "$@"
else
"$(which docker)" "$@"
fi
}
docker_run() {
debug $FUNCNAME
docker_exec run --rm -v /var/run/docker.sock:/var/run/docker.sock "$@"
}
docker_run_with_env_file() {
debug $FUNCNAME
get_list_of_che_system_environment_variables
# Silly issue - docker run --env-file does not accept path to file - must be in same dir
cd ~/."${CHE_MINI_PRODUCT_NAME}"
docker_run --env-file tmpgibberish "$@"
rm -rf ~/."${CHE_MINI_PRODUCT_NAME}"/tmpgibberish > /dev/null
}
docker_run_with_pseudo_tty() {
debug $FUNCNAME
if has_pseudo_tty; then
docker_run_with_env_file -t "$@"
else
docker_run_with_env_file "$@"
fi
}
docker_run_with_interactive() {
debug $FUNCNAME
if has_interactive; then
docker_run_with_pseudo_tty -i "$@"
else
docker_run_with_pseudo_tty "$@"
fi
}
docker_run_with_che_properties() {
debug $FUNCNAME
if [ ! -z ${CHE_CONF+x} ]; then
# Configuration directory set by user - this has precedence.
docker_run_with_interactive -e "CHE_CONF=${CHE_CONF}" "$@"
else
if has_che_properties; then
# No user configuration directory, but CHE_PROPERTY_ values set
generate_temporary_che_properties_file
docker_run_with_interactive -e "CHE_CONF=$(get_mount_path ~/.${CHE_MINI_PRODUCT_NAME}/conf)" "$@"
rm -rf ~/."${CHE_MINI_PRODUCT_NAME}"/conf/che.properties > /dev/null
else
docker_run_with_interactive "$@"
fi
fi
}
has_interactive() {
debug $FUNCNAME
if [ "${CHE_IS_INTERACTIVE}" = "true" ]; then
return 0
else
return 1
fi
}
has_pseudo_tty() {
debug $FUNCNAME
if [ "${CHE_IS_PSEUDO_TTY}" = "true" ]; then
return 0
else
return 1
fi
}
get_docker_host_ip() {
debug $FUNCNAME
case $(get_docker_install_type) in
boot2docker)
NETWORK_IF="eth1"
;;
native)
NETWORK_IF="docker0"
;;
*)
NETWORK_IF="eth0"
;;
esac
docker run --rm --net host \
alpine sh -c \
"ip a show ${NETWORK_IF}" | \
grep 'inet ' | \
cut -d/ -f1 | \
awk '{ print $2}'
}
get_docker_install_type() {
debug $FUNCNAME
if is_boot2docker; then
echo "boot2docker"
elif is_docker_for_windows; then
echo "docker4windows"
elif is_docker_for_mac; then
echo "docker4mac"
else
echo "native"
fi
}
is_boot2docker() {
debug $FUNCNAME
if echo "$GLOBAL_UNAME" | grep -q "boot2docker"; then
return 0
else
return 1
fi
}
is_docker_for_mac() {
debug $FUNCNAME
if is_moby_vm && ! has_docker_for_windows_client; then
return 0
else
return 1
fi
}
is_docker_for_windows() {
debug $FUNCNAME
if is_moby_vm && has_docker_for_windows_client; then
return 0
else
return 1
fi
}
is_native() {
debug $FUNCNAME
if [ $(get_docker_install_type) = "native" ]; then
return 0
else
return 1
fi
}
is_moby_vm() {
debug $FUNCNAME
if echo "$GLOBAL_NAME_MAP" | grep -q "moby"; then
return 0
else
return 1
fi
}
has_docker_for_windows_client(){
debug $FUNCNAME
if [ "${GLOBAL_HOST_ARCH}" = "windows" ]; then
return 0
else
return 1
fi
}
get_full_path() {
debug $FUNCNAME
# "/some/path" => /some/path
#OUTPUT_PATH=${1//\"}
# create full directory path
echo "$(cd "$(dirname "${1}")"; pwd)/$(basename "$1")"
}
convert_windows_to_posix() {
debug $FUNCNAME
echo "/"$(echo "$1" | sed 's/\\/\//g' | sed 's/://')
}
get_clean_path() {
debug $FUNCNAME
INPUT_PATH=$1
# \some\path => /some/path
OUTPUT_PATH=$(echo ${INPUT_PATH} | tr '\\' '/')
# /somepath/ => /somepath
OUTPUT_PATH=${OUTPUT_PATH%/}
# /some//path => /some/path
OUTPUT_PATH=$(echo ${OUTPUT_PATH} | tr -s '/')
# "/some/path" => /some/path
OUTPUT_PATH=${OUTPUT_PATH//\"}
echo ${OUTPUT_PATH}
}
get_mount_path() {
debug $FUNCNAME
FULL_PATH=$(get_full_path "${1}")
POSIX_PATH=$(convert_windows_to_posix "${FULL_PATH}")
CLEAN_PATH=$(get_clean_path "${POSIX_PATH}")
echo $CLEAN_PATH
}
has_docker_for_windows_ip() {
debug $FUNCNAME
if [ "${GLOBAL_GET_DOCKER_HOST_IP}" = "10.0.75.2" ]; then
return 0
else
return 1
fi
}
get_che_hostname() {
debug $FUNCNAME
INSTALL_TYPE=$(get_docker_install_type)
if [ "${INSTALL_TYPE}" = "boot2docker" ]; then
echo $GLOBAL_GET_DOCKER_HOST_IP
else
echo "localhost"
fi
}
has_che_env_variables() {
debug $FUNCNAME
PROPERTIES=$(env | grep CHE_)
if [ "$PROPERTIES" = "" ]; then
return 1
else
return 0
fi
}
get_list_of_che_system_environment_variables() {
debug $FUNCNAME
# See: http://stackoverflow.com/questions/4128235/what-is-the-exact-meaning-of-ifs-n
IFS=$'\n'
TMP_DIR=~/."${CHE_MINI_PRODUCT_NAME}"
TMP_FILE="${TMP_DIR}"/tmpgibberish
test -d "${TMP_DIR}" || mkdir -p "${TMP_DIR}"
touch "${TMP_FILE}"
if has_default_profile; then
cat "${TMP_DIR}"/profiles/"${CHE_PROFILE}" | sed 's/\"//g' >> "${TMP_FILE}"
else
# Grab these values to send to other utilities - they need to know the values
echo "CHE_SERVER_CONTAINER_NAME=${CHE_SERVER_CONTAINER_NAME}" >> "${TMP_FILE}"
echo "CHE_SERVER_IMAGE_NAME=${CHE_SERVER_IMAGE_NAME}" >> "${TMP_FILE}"
echo "CHE_PRODUCT_NAME=${CHE_PRODUCT_NAME}" >> "${TMP_FILE}"
echo "CHE_MINI_PRODUCT_NAME=${CHE_MINI_PRODUCT_NAME}" >> "${TMP_FILE}"
echo "CHE_VERSION=${CHE_VERSION}" >> "${TMP_FILE}"
echo "CHE_UTILITY_VERSION=${CHE_UTILITY_VERSION}" >> "${TMP_FILE}"
echo "CHE_CLI_INFO=${CHE_CLI_INFO}" >> "${TMP_FILE}"
echo "CHE_CLI_DEBUG=${CHE_CLI_DEBUG}" >> "${TMP_FILE}"
echo "CHE_DATA=${CHE_DATA}" >> "${TMP_FILE}"
CHE_VARIABLES=$(env | grep CHE_)
if [ ! -z ${CHE_VARIABLES+x} ]; then
env | grep CHE_ >> "${TMP_FILE}"
fi
# Add in known proxy variables
if [ ! -z ${http_proxy+x} ]; then
echo "http_proxy=${http_proxy}" >> "${TMP_FILE}"
fi
if [ ! -z ${https_proxy+x} ]; then
echo "https_proxy=${https_proxy}" >> "${TMP_FILE}"
fi
if [ ! -z ${no_proxy+x} ]; then
echo "no_proxy=${no_proxy}" >> "${TMP_FILE}"
fi
fi
}
check_current_image_and_update_if_not_found() {
debug $FUNCNAME
CURRENT_IMAGE=$(docker images -q "$1":"$2")
if [ "${CURRENT_IMAGE}" == "" ]; then
update_che_image $1 $2
fi
}
has_che_properties() {
debug $FUNCNAME
PROPERTIES=$(env | grep CHE_PROPERTY_)
if [ "$PROPERTIES" = "" ]; then
return 1
else
return 0
fi
}
generate_temporary_che_properties_file() {
debug $FUNCNAME
if has_che_properties; then
test -d ~/."${CHE_MINI_PRODUCT_NAME}"/conf || mkdir -p ~/."${CHE_MINI_PRODUCT_NAME}"/conf
touch ~/."${CHE_MINI_PRODUCT_NAME}"/conf/che.properties
# Get list of properties
PROPERTIES_ARRAY=($(env | grep CHE_PROPERTY_))
for PROPERTY in "${PROPERTIES_ARRAY[@]}"
do
# CHE_PROPERTY_NAME=value ==> NAME=value
PROPERTY_WITHOUT_PREFIX=${PROPERTY#CHE_PROPERTY_}
# NAME=value ==> separate name / value into different variables
PROPERTY_NAME=$(echo $PROPERTY_WITHOUT_PREFIX | cut -f1 -d=)
PROPERTY_VALUE=$(echo $PROPERTY_WITHOUT_PREFIX | cut -f2 -d=)
# Replace "_" in names to periods
CONVERTED_PROPERTY_NAME=$(echo "$PROPERTY_NAME" | tr _ .)
# Replace ".." in names to "_"
SUPER_CONVERTED_PROPERTY_NAME="${CONVERTED_PROPERTY_NAME//../_}"
echo "$SUPER_CONVERTED_PROPERTY_NAME=$PROPERTY_VALUE" >> ~/."${CHE_MINI_PRODUCT_NAME}"/conf/che.properties
done
fi
}
contains() {
string="$1"
substring="$2"
if test "${string#*$substring}" != "$string"
then
return 0 # $substring is in $string
else
return 1 # $substring is not in $string
fi
}
get_container_ssh() {
CURRENT_CHE_DEBUG=$(docker inspect --format='{{.NetworkSettings.Ports}}' ${1})
IFS=$' '
for SINGLE_BIND in $CURRENT_CHE_DEBUG; do
case $SINGLE_BIND in
*22/tcp:*)
echo $SINGLE_BIND | cut -f2 -d":"
return
;;
*)
;;
esac
done
echo "<nil>"
}
has_ssh () {
if $(contains $(get_container_ssh $1) "<nil>"); then
return 1
else
return 0
fi
}
has_default_profile() {
debug $FUNCNAME
if [ -f ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/.profile ]; then
return 0
else
return 1
fi
}
get_default_profile() {
debug $FUNCNAME
if [ has_default_profile ]; then
source ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/.profile
echo "${CHE_PROFILE}"
else
echo ""
fi
}
load_profile() {
debug $FUNCNAME
if has_default_profile; then
source ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/.profile
if [ ! -f ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/"${CHE_PROFILE}" ]; then
error ""
error "${CHE_MINI_PRODUCT_NAME} CLI profile set in ~/.${CHE_MINI_PRODUCT_NAME}/profiles/.profile to '${CHE_PROFILE}' but ~/.${CHE_MINI_PRODUCT_NAME}/profiles/${CHE_PROFILE} does not exist."
error ""
return
fi
source ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/"${CHE_PROFILE}"
fi
}
###########################################################################
### END HELPER FUNCTIONS
###
### START CLI COMMANDS
###########################################################################
execute_che_launcher() {
debug $FUNCNAME
if [ $# -gt 0 ]; then
error "${CHE_MINI_PRODUCT_NAME} start/stop/start: You passed unknown options."
return
fi
check_current_image_and_update_if_not_found ${CHE_LAUNCHER_IMAGE_NAME} ${CHE_UTILITY_VERSION}
docker_run_with_che_properties "${CHE_LAUNCHER_IMAGE_NAME}":"${CHE_UTILITY_VERSION}" "${CHE_CLI_ACTION}" || true
}
execute_profile(){
debug $FUNCNAME
if [ ! $# -ge 2 ]; then
error "Wrong number of arguments."
return
fi
case ${2} in
add|rm|set|info|update)
if [ ! $# -eq 3 ]; then
error "Wrong number of arguments."
return
fi
;;
unset|list)
if [ ! $# -eq 2 ]; then
error "Wrong number of arguments."
return
fi
;;
esac
case ${2} in
add)
if [ -f ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/"${3}" ]; then
error "Profile ~/.${CHE_MINI_PRODUCT_NAME}/profiles/${3} already exists. Nothing to do. Exiting."
return
fi
PROFILE_DIR=~/."${CHE_MINI_PRODUCT_NAME}"/profiles
PROFILE_FILE="${PROFILE_DIR}"/"${3}"
test -d "${PROFILE_DIR}" || mkdir -p "${PROFILE_DIR}"
touch "${PROFILE_FILE}"
echo "CHE_PRODUCT_NAME=\"""${CHE_PRODUCT_NAME}""\"" >> "${PROFILE_FILE}"
echo "CHE_MINI_PRODUCT_NAME=\"""${CHE_MINI_PRODUCT_NAME}""\"" >> "${PROFILE_FILE}"
echo "CHE_LAUNCHER_IMAGE_NAME=$CHE_LAUNCHER_IMAGE_NAME" >> "${PROFILE_FILE}"
echo "CHE_SERVER_IMAGE_NAME=$CHE_SERVER_IMAGE_NAME" >> "${PROFILE_FILE}"
echo "CHE_DIR_IMAGE_NAME=$CHE_DIR_IMAGE_NAME" >> "${PROFILE_FILE}"
echo "CHE_MOUNT_IMAGE_NAME=$CHE_MOUNT_IMAGE_NAME" >> "${PROFILE_FILE}"
echo "CHE_TEST_IMAGE_NAME=$CHE_TEST_IMAGE_NAME" >> "${PROFILE_FILE}"
echo "CHE_SERVER_CONTAINER_NAME=$CHE_SERVER_CONTAINER_NAME" >> "${PROFILE_FILE}"
echo "CHE_VERSION=$CHE_VERSION" >> "${PROFILE_FILE}"
# Add all other variables to the profile
env | grep CHE_ >> "${PROFILE_FILE}" || true
# Remove duplicates, if any
cat "${PROFILE_FILE}" | sort | uniq > "${PROFILE_DIR}"/tmp
mv -f "${PROFILE_DIR}"/tmp "${PROFILE_FILE}"
info "profile" "Added new ${CHE_MINI_PRODUCT_NAME} CLI profile ${PROFILE_FILE}."
;;
update)
if [ ! -f ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/"${3}" ]; then
error "Profile ~/.${CHE_MINI_PRODUCT_NAME}/profiles/${3} does not exist. Nothing to update. Exiting."
return
fi
execute_profile profile rm "${3}"
execute_profile profile add "${3}"
;;
rm)
if [ ! -f ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/"${3}" ]; then
error "Profile ~/.${CHE_MINI_PRODUCT_NAME}/profiles/${3} does not exist. Nothing to do. Exiting."
return
fi
rm ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/"${3}" > /dev/null
info "profile" "Removed ${CHE_MINI_PRODUCT_NAME} CLI profile ~/.${CHE_MINI_PRODUCT_NAME}/profiles/${3}."
;;
info)
if [ ! -f ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/"${3}" ]; then
error "Profile ~/.${CHE_MINI_PRODUCT_NAME}/profiles/${3} does not exist. Nothing to do. Exiting."
return
fi
while IFS= read line
do
# display $line or do somthing with $line
info "profile" "$line"
done <~/."${CHE_MINI_PRODUCT_NAME}"/profiles/"${3}"
;;
set)
if [ ! -f ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/"${3}" ]; then
error "Profile ~/.${CHE_MINI_PRODUCT_NAME}/${3} does not exist. Nothing to do. Exiting."
return
fi
echo "CHE_PROFILE=${3}" > ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/.profile
info "profile" "Set active ${CHE_MINI_PRODUCT_NAME} CLI profile to ~/.${CHE_MINI_PRODUCT_NAME}/profiles/${3}."
;;
unset)
if [ ! -f ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/.profile ]; then
error "Default profile not set. Nothing to do. Exiting."
return
fi
rm -rf ~/."${CHE_MINI_PRODUCT_NAME}"/profiles/.profile
info "profile" "Unset the default ${CHE_MINI_PRODUCT_NAME} CLI profile. No profile currently set."
;;
list)
if [ -d ~/."${CHE_MINI_PRODUCT_NAME}"/profiles ]; then
info "profile" "Available ${CHE_MINI_PRODUCT_NAME} CLI profiles:"
ls ~/."${CHE_MINI_PRODUCT_NAME}"/profiles
else
info "profile" "No ${CHE_MINI_PRODUCT_NAME} CLI profiles currently set."
fi
if has_default_profile; then
info "profile" "Default profile set to:"
get_default_profile
else
info "profile" "Default profile currently unset."
fi
;;
esac
}
execute_che_dir() {
debug $FUNCNAME
check_current_image_and_update_if_not_found ${CHE_DIR_IMAGE_NAME} ${CHE_UTILITY_VERSION}
CURRENT_DIRECTORY=$(get_mount_path "${PWD}")
docker_run_with_che_properties -v "$CURRENT_DIRECTORY":"$CURRENT_DIRECTORY" "${CHE_DIR_IMAGE_NAME}":"${CHE_UTILITY_VERSION}" "${CURRENT_DIRECTORY}" "$@"
}
execute_che_action() {
debug $FUNCNAME
check_current_image_and_update_if_not_found ${CHE_ACTION_IMAGE_NAME} ${CHE_UTILITY_VERSION}
docker_run_with_che_properties "${CHE_ACTION_IMAGE_NAME}":"${CHE_UTILITY_VERSION}" "$@"
}
update_che_image() {
debug $FUNCNAME
if [ "${1}" == "--force" ]; then
shift
info "update" "Removing image $1:$2"
docker rmi -f $1:$2 > /dev/null
fi
info "update" "Pulling image $1:$2"
docker pull $1:$2
echo ""
}
execute_che_mount() {
debug $FUNCNAME
# Determine the mount path to do the mount
info "mount" "Setting local mount path to ${PWD}"
MOUNT_PATH=$(get_mount_path "${PWD}")
HOME_PATH=$(get_mount_path "${HOME}")
if is_native; then
docker_run_with_che_properties --cap-add SYS_ADMIN \
--device /dev/fuse \
--name che-mount \
-v ${HOME}/.ssh:${HOME}/.ssh \
-v /etc/group:/etc/group:ro \
-v /etc/passwd:/etc/passwd:ro \
-u $(id -u ${USER}) \
-v ~/.che/unison:/profile \
-v "${MOUNT_PATH}":/mnthost \
"${CHE_MOUNT_IMAGE_NAME}":"${CHE_UTILITY_VERSION}" \
$*
else
docker_run_with_che_properties --cap-add SYS_ADMIN \
--device /dev/fuse \
--name che-mount \
-v ~/.che/unison:/profile \
-v "${MOUNT_PATH}":/mnthost \
"${CHE_MOUNT_IMAGE_NAME}":"${CHE_UTILITY_VERSION}" \
$*
fi
# Docker doesn't seem to normally clean up this container
docker rm -f che-mount
}
execute_che_compile() {
debug $FUNCNAME
if [ $# -eq 0 ]; then
error "Missing argument - pass compilation command as paramters."
return
fi
check_current_image_and_update_if_not_found ${CHE_DEV_IMAGE_NAME} ${CHE_UTILITY_VERSION}
CURRENT_DIRECTORY=$(get_mount_path "${PWD}")
docker_run_with_che_properties -v "$CURRENT_DIRECTORY":/home/user/che-build \
-v "$(get_mount_path ~/.m2):/home/user/.m2" \
-w /home/user/che-build \
"${CHE_DEV_IMAGE_NAME}":"${CHE_UTILITY_VERSION}" "$@"
}
execute_che_test() {
debug $FUNCNAME
check_current_image_and_update_if_not_found ${CHE_TEST_IMAGE_NAME} ${CHE_UTILITY_VERSION}
docker_run_with_che_properties "${CHE_TEST_IMAGE_NAME}":"${CHE_UTILITY_VERSION}" "$@"
}
execute_che_info() {
debug $FUNCNAME
if [ $# -eq 1 ]; then
TESTS="--server"
else
TESTS=$2
fi
case $TESTS in
--all|-all)
print_che_cli_debug
execute_che_launcher
run_connectivity_tests
execute_che_test post-flight-check "$@"
;;
--cli|-cli)
print_che_cli_debug
;;
--networking|-networking)
run_connectivity_tests
;;
--server|-server)
print_che_cli_debug
execute_che_launcher
;;
--create|-create)
execute_che_test "$@"
;;
*)
error "Unknown info flag passed: $2. Exiting."
;;
esac
}
print_che_cli_debug() {
debug $FUNCNAME
info "---------------------------------------"
info "------------- CLI INFO ------------"
info "---------------------------------------"
info ""
info "--------- PLATFORM INFO -------------"
info "CLI DEFAULT PROFILE = $(has_default_profile && echo $(get_default_profile) || echo "not set")"
info "CHE_VERSION = ${CHE_VERSION}"
info "CHE_CLI_VERSION = ${CHE_CLI_VERSION}"
info "CHE_UTILITY_VERSION = ${CHE_UTILITY_VERSION}"
info "DOCKER_INSTALL_TYPE = $(get_docker_install_type)"
info "DOCKER_HOST_IP = ${GLOBAL_GET_DOCKER_HOST_IP}"
info "IS_NATIVE = $(is_native && echo "YES" || echo "NO")"
info "IS_WINDOWS = $(has_docker_for_windows_client && echo "YES" || echo "NO")"
info "IS_DOCKER_FOR_WINDOWS = $(is_docker_for_windows && echo "YES" || echo "NO")"
info "IS_DOCKER_FOR_MAC = $(is_docker_for_mac && echo "YES" || echo "NO")"
info "IS_BOOT2DOCKER = $(is_boot2docker && echo "YES" || echo "NO")"
info "HAS_DOCKER_FOR_WINDOWS_IP = $(has_docker_for_windows_ip && echo "YES" || echo "NO")"
info "IS_MOBY_VM = $(is_moby_vm && echo "YES" || echo "NO")"
info "HAS_CHE_ENV_VARIABLES = $(has_che_env_variables && echo "YES" || echo "NO")"
info "HAS_TEMP_CHE_PROPERTIES = $(has_che_properties && echo "YES" || echo "NO")"
info "IS_INTERACTIVE = $(has_interactive && echo "YES" || echo "NO")"
info "IS_PSEUDO_TTY = $(has_pseudo_tty && echo "YES" || echo "NO")"
info ""
}
run_connectivity_tests() {
debug $FUNCNAME
info ""
info "---------------------------------------"
info "-------- CONNECTIVITY TEST --------"
info "---------------------------------------"
# Start a fake workspace agent
docker_exec run -d -p 12345:80 --name fakeagent alpine httpd -f -p 80 -h /etc/ > /dev/null
AGENT_INTERNAL_IP=$(docker inspect --format='{{.NetworkSettings.IPAddress}}' fakeagent)
AGENT_INTERNAL_PORT=80
AGENT_EXTERNAL_IP=$GLOBAL_GET_DOCKER_HOST_IP
AGENT_EXTERNAL_PORT=12345
### TEST 1: Simulate browser ==> workspace agent HTTP connectivity
HTTP_CODE=$(curl -I $(get_che_hostname):${AGENT_EXTERNAL_PORT}/alpine-release \
-s -o /dev/null --connect-timeout 5 \
--write-out "%{http_code}") || echo "28" > /dev/null
if [ "${HTTP_CODE}" = "200" ]; then
info "Browser => Workspace Agent (Hostname) : Connection succeeded"
else
info "Browser => Workspace Agent (Hostname) : Connection failed"
fi
### TEST 1a: Simulate browser ==> workspace agent HTTP connectivity
HTTP_CODE=$(curl -I ${AGENT_EXTERNAL_IP}:${AGENT_EXTERNAL_PORT}/alpine-release \
-s -o /dev/null --connect-timeout 5 \
--write-out "%{http_code}") || echo "28" > /dev/null
if [ "${HTTP_CODE}" = "200" ]; then
info "Browser => Workspace Agent (External IP): Connection succeeded"
else
info "Browser => Workspace Agent (External IP): Connection failed"
fi
### TEST 2: Simulate Che server ==> workspace agent (external IP) connectivity
export HTTP_CODE=$(docker run --rm --name fakeserver \
--entrypoint=curl \
${CHE_SERVER_IMAGE_NAME}:${CHE_VERSION} \
-I ${AGENT_EXTERNAL_IP}:${AGENT_EXTERNAL_PORT}/alpine-release \
-s -o /dev/null \
--write-out "%{http_code}")
if [ "${HTTP_CODE}" = "200" ]; then
info "Che Server => Workspace Agent (External IP): Connection succeeded"
else
info "Che Server => Workspace Agent (External IP): Connection failed"
fi
### TEST 3: Simulate Che server ==> workspace agent (internal IP) connectivity
export HTTP_CODE=$(docker run --rm --name fakeserver \
--entrypoint=curl \
${CHE_SERVER_IMAGE_NAME}:${CHE_VERSION} \
-I ${AGENT_INTERNAL_IP}:${AGENT_INTERNAL_PORT}/alpine-release \
-s -o /dev/null \
--write-out "%{http_code}")
if [ "${HTTP_CODE}" = "200" ]; then
info "Che Server => Workspace Agent (Internal IP): Connection succeeded"
else
info "Che Server => Workspace Agent (Internal IP): Connection failed"
fi
docker rm -f fakeagent > /dev/null
}