-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestclient
More file actions
executable file
·1202 lines (1072 loc) · 36.4 KB
/
Copy pathtestclient
File metadata and controls
executable file
·1202 lines (1072 loc) · 36.4 KB
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
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env bash
set -u
# ▄▄▄▄
# ▀▀██
# ▄█████▄ ██ ██ ██▄████ ██
# ██▀ ▀ ██ ██ ██▀ ██
# ██ ██ ██ ██ ██
# ▀██▄▄▄▄█ ██▄▄▄███ ██ ██▄▄▄
# ▀▀▀▀▀ ▀▀▀▀ ▀▀ ▀▀ ▀▀▀▀
COOKIE_JAR=$(mktemp)
prod_url() {
echo "https://api.unison.cloud$1"
}
staging_url() {
echo "http://staging.api.unison.cloud$1"
}
local_url() {
echo "http://127.0.0.1:5424$1"
}
prod_login_url() {
prod_url "/login"
}
staging_login_url() {
staging_url "/login"
}
local_login_url() {
local_url "/local/user/test/login"
}
url() {
if [ "$LOCAL" -eq 0 ]; then
if [ "$STAGING" -eq 0 ]; then
stagin_url "$1"
else
prod_url "$1"
fi
else
local_url "$1"
fi
}
login_url() {
if [ "$LOCAL" -eq 0 ]; then
if [ "$STAGING" ]; then
staging_login_url
else
prod_login_url
fi
else
local_login_url
fi
}
SEND_BINARY=(-H "Content-Type: application/octet-stream")
SEND_PLAINTEXT=(-H "Content-Type: text/plain;charset=utf-8")
SEND_JSON=(-H "Content-Type: application/json;charset=utf-8")
ACCEPT_JSON=(-H "Accept: application/json;charset=utf-8")
local_curl_command() {
Q=-q
case $VERBOSITY in
0)
Q=-q
;;
1)
Q=
;;
*)
Q=-v
;;
esac
if [ "$VERBOSITY" -gt 0 ]; then
gray "curl --fail-with-body -s $Q -b ${COOKIE_JAR} $*" 1>&2
sleep 1
fi
curl -b "${COOKIE_JAR}" "$@"
}
prod_curl_command() {
Q=-q
case $VERBOSITY in
0)
Q=-q
;;
1)
Q=
;;
*)
Q=-v
;;
esac
if [ "$VERBOSITY" -gt 0 ]; then
gray "curl --fail-with-body -s $Q --cookie JWT-Cookie=\$(jq -r '.credentials.default.\"api.unison-lang.org\".tokens.access_token' < ~/.local/share/unisonlanguage/credentials.json) $*" 1>&2
sleep 1
fi
curl --fail-with-body -s "$Q" --cookie "JWT-Cookie=$(jq -r '.credentials.default."api.unison-lang.org".tokens.access_token' < ~/.local/share/unisonlanguage/credentials.json)" "$@"
}
curl_command() {
if [ "$LOCAL" -eq 0 ]; then
prod_curl_command "$@"
else
local_curl_command "$@"
fi
}
curl_local_login() {
case $VERBOSITY in
0)
Q=-q
;;
1)
Q=-q
;;
*)
Q=-v
;;
esac
if [ "$VERBOSITY" -gt 0 ]; then
gray "curl --fail-with-body -s $Q --cookie-jar ${COOKIE_JAR} $(login_url)\n" 1>&2
fi
curl --fail-with-body -s "$Q" --cookie-jar "${COOKIE_JAR}" "$(login_url)"
res=$?
if [ "$VERBOSITY" -gt 0 ]; then
case $res in
0)
green "\nsuccessfully logged in\n"
;;
*)
red "foo"
die "\nfailed to log in\n"
;;
esac
fi
}
curl_login() {
if [ "$LOCAL" -eq 0 ]; then
:
else
curl_local_login
fi
}
# ██ ▄▄▄▄
# ██ ▀▀ ▀▀██
# ██ ██ ███████ ████ ██
# ██ ██ ██ ██ ██
# ██ ██ ██ ██ ██
# ██▄▄▄███ ██▄▄▄ ▄▄▄██▄▄▄ ██▄▄▄
# ▀▀▀▀ ▀▀ ▀▀▀▀ ▀▀▀▀▀▀▀▀ ▀▀▀▀
generate_hash() {
echo -n "$1" | openssl dgst -sha256 -binary | base64 | tr '/' '_' | tr '+' '-' | tr -d '='
}
RED='\033[0;31m'
GREEN='\033[0;32m'
LIGHT_GRAY='\033[0;90m'
PLAIN='\033[0m'
red() {
# shellcheck disable=SC2059
printf "${RED}$*${PLAIN}\n"
}
green() {
# shellcheck disable=SC2059
printf "${GREEN}$*${PLAIN}\n"
}
gray() {
# shellcheck disable=SC2059
printf "${LIGHT_GRAY}$1${PLAIN}\n"
}
################################################################################
# account
account_get() {
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/account")" | jq .
}
account_subscribe() {
cloudTier=$1; shift
customerInfo='{ "name" : "Test McUser", "address" : {"line1": "1234 Random Rd", "city": "Gotham", "country": "US", "postal_code": "60652", "state": "Illinois"}}';
curl_command "${SEND_JSON[@]}" "${ACCEPT_JSON[@]}" -X POST -d "{\"cloudTier\": \"$cloudTier\", \"customer\": $customerInfo}" "$(url "/v2/account/subscription")" | jq
}
account_command() {
if [ $# -lt 1 ]; then
account_help
else
command=$1 ; shift
case $command in
get)
account_get
;;
subscribe)
account_subscribe "$@"
;;
help)
account_help
;;
*)
echo "Unknown command: $command"
;;
esac
fi
}
account_help() {
echo "Usage:"
echo "account [command]"
echo "Commands:"
echo " get"
echo " subscribe <cloudTier>"
echo " cloudTier: Starter, Pro"
}
# ▄████▄ ██▄████▄ ██▄ ▄██
# ██▄▄▄▄██ ██▀ ██ ██ ██
# ██▀▀▀▀▀▀ ██ ██ ▀█▄▄█▀
# ▀██▄▄▄▄█ ██ ██ ████
# ▀▀▀▀▀ ▀▀ ▀▀ ▀▀
environment_create() {
curl_command -X POST "$(url "/v2/environments/$1")"
}
environment_set_value() {
curl_command "${SEND_PLAINTEXT[@]}" -X POST -d "$3" "$(url "/v2/environments/$1/$2")"
green "successfully set environment value $2 to $3\n"
}
environment_delete_value() {
curl_command "${SEND_PLAINTEXT[@]}" -X DELETE "$(url "/v2/environments/$1/$2")"
green "successfully deleted environment value for $2\n"
}
environments_list() {
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/environments")" | jq -r '.[] | .id + " " + .name'
}
environment_delete() {
curl_command -X DELETE "$(url "/v2/environments/$1")"
}
environment_command() {
if [ $# -lt 1 ]; then
environment_help
else
command=$1 ; shift
case $command in
create)
environment_create "$@"
;;
list | ls)
environments_list
;;
delete | del | rm)
environment_delete "$@"
;;
set)
environment_set_value "$@"
;;
delete_value)
environment_delete_value "$@"
;;
help)
environment_help
;;
*)
echo "Unknown command: $command"
;;
esac
fi
}
environment_help() {
echo "Usage:"
echo "environment [command]"
echo "Commands:"
echo " create <name>"
echo " list"
echo " delete <uuid>"
echo "Notes:"
echo " Acceptable spellings: environments, environment, env, e"
}
# TODO ceedubs update
daemon_create() {
curl_command -X POST "$(url "/v2/daemons/$1")"
}
daemon_delete() {
curl_command -X DELETE "$(url "/v2/daemons/$1")"
}
daemon_list() {
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/daemons")" | jq -r '.[] | .id + " " + .name'
}
daemon_command() {
if [ $# -lt 1 ]; then
daemon_help
else
command=$1 ; shift
case $command in
create)
daemon_create "$@"
;;
list | ls)
daemon_list
;;
delete | del | rm)
daemon_delete "$@"
;;
help)
daemon_help
;;
*)
echo "Unknown command: $command"
;;
esac
fi
}
daemon_help() {
echo "Usage:"
echo "daemon [command]"
echo "Commands:"
echo " create <name>"
echo " list"
echo " delete <uuid>"
}
# ██
# ▀▀
# ▄▄█████▄ ▄████▄ ██▄████ ██▄ ▄██ ████ ▄█████▄ ▄████▄
# ██▄▄▄▄ ▀ ██▄▄▄▄██ ██▀ ██ ██ ██ ██▀ ▀ ██▄▄▄▄██
# ▀▀▀▀██▄ ██▀▀▀▀▀▀ ██ ▀█▄▄█▀ ██ ██ ██▀▀▀▀▀▀
# █▄▄▄▄▄██ ▀██▄▄▄▄█ ██ ████ ▄▄▄██▄▄▄ ▀██▄▄▄▄█ ▀██▄▄▄▄█
# ▀▀▀▀▀▀ ▀▀▀▀▀ ▀▀ ▀▀ ▀▀▀▀▀▀▀▀ ▀▀▀▀▀ ▀▀▀▀▀
service_create() {
if curl_command "${SEND_BINARY[@]}" -X POST -d "$1" "$(url "/v2/services/create?name=$2")"
then
green "Ok.\n"
else
red "Failed.\n"
fi
}
services_list() {
if [ "$RAW" -eq 1 ]; then
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/services")" | jq .
elif [ -x "$(which mlr)" ]; then
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/services")" \
| jq -r -s '.[] | map (.tags = (.tags | join (","))) | map ({ Id: .id, Name: .name, Owner: .owner.handle, Tags: .tags} ) | (.[0] | to_entries | map(.key)), (.[] | [.[]]) | @csv' \
| mlr -C --key-color=blue --csv --opprint sort -f shape
else
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/services")" \
| jq -r -s '.[] | map (.tags = (.tags | join (","))) | map ({ Id: .id, Name: .name, Owner: .owner.handle, Tags: .tags} ) | (.[0] | to_entries | map(.key)), (.[] | [.[]]) | @tsv'
fi
}
services_get() {
if [ "$RAW" -eq 1 ]; then
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/services/$1")" | jq .
elif [ -x "$(which mlr)" ]; then
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/services/$1")" \
| jq -r '.tags=(.tags | join (",")) | [{ Id: .id, Name: .name, Owner: .owner.handle, Tags: .tags}] | (.[0] | to_entries | map(.key)), (.[] | [.[]]) | @csv' \
| mlr -C --key-color=blue --csv --opprint sort -f shape
else
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/services/$1")" \
| jq -r '.tags = (.tags | join (",")) | [{ Id: .id, Name: .name, Owner: .owner.handle, Tags: .tags}] | (.[0] to_entries | map(.key)), (.[] | [.[]]) | @tsv'
fi
}
services_history() {
if [ "$RAW" -eq 1 ]; then
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/services/$1/history")" | jq .
elif [ -x "$(which mlr)" ]; then
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/services/$1/history")" \
| jq -r 'map ({"Deployed By": .deployedBy.handle, "Deployment Hash": .hash, "Deployed At": .deployedAt, "Undeployed At": .undeployedAt, "Exposed At": .exposedAt }) | (.[0] | to_entries | map(.key)), (.[] | [.[]]) | @csv' \
| mlr -C --key-color=blue --csv --opprint sort -f shape
else
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/services/$1/history")" \
| jq -r 'map ({"Deployed By": .deployedBy.handle, "Deployment Hash": .hash, "Deployed At": .deployedAt, "Undeployed At": .undeployedAt, "Exposed At": .exposedAt }) | @tsv'
fi
}
services_untagged() {
if [ "$RAW" -eq 1 ]; then
JQ=(.)
else
JQ=(-r .[])
fi
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/services/untagged")" | jq "${JQ[@]}"
}
services_add_tag() {
if curl_command -X POST "$(url "/v2/services/$1/tags/$2")"; then
green "Ok.\n"
else
red "Failed.\n"
fi
}
services_delete_tag() {
if curl_command -X DELETE "$(url "/v2/services/$1/tags/$2")" ; then
green "Ok.\n"
else
red "Failed.\n"
fi
}
services_list_all_tags() {
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/services/tags")" | jq -r 'join(", ")'
}
services_by_tag() {
if [ "$RAW" -eq 1 ]; then
JQ=(.)
else
JQ=(-r .[])
fi
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/services/tags/$1")" | jq "${JQ[@]}"
}
service_assign() {
curl_command -X POST "$(url "/v2/services/$1/assign/$2")" && green "Ok.\n"
}
service_unassign() {
curl_command -X POST "$(url "/v2/services/$1/unassign")" && green "Ok.\n"
}
serviceId_help() {
echo "Usage: service [command]"
echo
echo "Commands:"
echo " list | get | ls"
echo " history <serviceId>"
echo " assign <serviceId> <hash>"
echo " unassign <serviceId>"
echo " untagged"
echo " tags"
echo " tag <serviceId> <tag>"
echo " delete-tag <serviceId> <tag>"
echo " by-tag <tag>"
echo
}
serviceId_command() {
if [ $# -lt 1 ]; then
serviceId_help
else
command=$1 ; shift
case $command in
create | new)
service_create "$@"
;;
list | ls)
services_list
;;
get)
services_get "$@"
;;
by-name | named | name | n)
services_by_name "$@"
;;
history | hist | h)
services_history "$@"
;;
assign)
service_assign "$@"
;;
unassign)
service_unassign "$@"
;;
untagged)
services_untagged
;;
tags)
services_list_all_tags
;;
tag)
services_add_tag "$@"
;;
delete-tag | tag-delete | untag)
services_delete_tag "$@"
;;
by-tag)
services_by_tag "$@"
;;
help)
serviceId_help
;;*)
echo "Unknown command: $command"
;;
esac
fi
}
# serviceName_list() {
# if [ "$RAW" -eq 1 ]; then
# curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/users/test/services")" | jq .
# elif [ -x "$(which mlr)" ]; then
# curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/users/test/services")" \
# | jq -r -s '.[] | map (.tags = (.tags | join (","))) | map ({ Id: .id, Name: .name, Owner: .owner.handle, Tags: .tags} ) | (.[0] | to_entries | map(.key)), (.[] | [.[]]) | @csv' \
# | mlr -C --key-color=blue --csv --opprint sort -f shape
# else
# curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/users/test/services")" \
# | jq -r -s '.[] | map (.tags = (.tags | join (","))) | map ({ Id: .id, Name: .name, Owner: .owner.handle, Tags: .tags} ) | (.[0] | to_entries | map(.key)), (.[] | [.[]]) | @tsv'
# fi
# }
serviceName_get() {
if [ "$RAW" -eq 1 ]; then
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/users/test/services/$1")" | jq .
elif [ -x "$(which mlr)" ]; then
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/users/test/services/$1")" \
| jq -r '.tags=(.tags | join (",")) | [{ Id: .id, Name: .name, Owner: .owner.handle, Tags: .tags}] | (.[0] | to_entries | map(.key)), (.[] | [.[]]) | @csv' \
| mlr -C --key-color=blue --csv --opprint sort -f shape
else
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/users/test/services/$1")" \
| jq -r '.tags = (.tags | join (",")) | [{ Id: .id, Name: .name, Owner: .owner.handle, Tags: .tags}] | (.[0] to_entries | map(.key)), (.[] | [.[]]) | @tsv'
fi
}
serviceName_history() {
if [ "$RAW" -eq 1 ]; then
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/users/test/services/$1/deployments")" | jq .
elif [ -x "$(which mlr)" ]; then
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/users/test/services/$1/deployments")" \
| jq -r 'map ({"Deployed By": .deployedBy.handle, "Deployment Hash": .hash, "Deployed At": .deployedAt, "Undeployed At": .undeployedAt, "Exposed At": .exposedAt }) | (.[0] | to_entries | map(.key)), (.[] | [.[]]) | @csv' \
| mlr -C --key-color=blue --csv --opprint sort -f shape
else
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/users/test/services/$1/deployments")" \
| jq -r 'map ({"Deployed By": .deployedBy.handle, "Deployment Hash": .hash, "Deployed At": .deployedAt, "Undeployed At": .undeployedAt, "Exposed At": .exposedAt }) | @tsv'
fi
}
serviceName_assign() {
curl_command -X POST "$(url "/v2/users/test/assign/$1/$2")" && green "Ok.\n"
}
serviceName_unassign() {
curl_command -X POST "$(url "/v2/users/test/unassign/$1")" && green "Ok.\n"
}
serviceName_command() {
if [ $# -lt 1 ]; then
serviceName_help
else
command=$1 ; shift
case $command in
list | ls)
services_list
;;
get)
serviceName_get "$@"
;;
history | hist | h)
serviceName_history "$@"
;;
assign)
serviceName_assign "$@"
;;
unassign)
serviceName_unassign "$@"
;;
untagged)
services_untagged
;;
tags)
services_list_all_tags
;;
tag)
services_add_tag "$@"
;;
delete-tag | tag-delete | untag)
services_delete_tag "$@"
;;
by-tag)
services_by_tag "$@"
;;
help)
serviceName_help
;;
*)
echo "Unknown command: $command"
;;
esac
fi
}
serviceName_help() {
echo "Usage: sn [command]"
echo
echo "Commands:"
echo " list | ls"
echo " history <serviceId>"
echo " assign <serviceId> <hash>"
echo " unassign <serviceId>"
echo " untagged"
echo " tags"
echo " tag <serviceId> <tag>"
echo " delete-tag <serviceId> <tag>"
echo " by-tag <tag>"
echo
}
# ▄▄ ▄▄▄▄
# ██ ▀▀██
# ▄███▄██ ▄████▄ ██▄███▄ ██ ▄████▄ ▀██ ███
# ██▀ ▀██ ██▄▄▄▄██ ██▀ ▀██ ██ ██▀ ▀██ ██▄ ██
# ██ ██ ██▀▀▀▀▀▀ ██ ██ ██ ██ ██ ████▀
# ▀██▄▄███ ▀██▄▄▄▄█ ███▄▄██▀ ██▄▄▄ ▀██▄▄██▀ ███
# ▀▀▀ ▀▀ ▀▀▀▀▀ ██ ▀▀▀ ▀▀▀▀ ▀▀▀▀ ██
# ██ ███
deploy_format() {
if [ "$RAW" -eq 1 ]; then
jq .
elif [ -x "$(which mlr)" ]; then
jq -r 'map ({"Deployed By": .deployedBy.handle, "Deployment Hash": .hash, "Deployed At": .deployedAt, "Undeployed At": .undeployedAt, "Exposed At": .exposedAt }) | (.[0] | to_entries | map(.key)), (.[] | [.[]]) | @csv' | mlr -C --key-color=blue --csv --opprint sort -f shape
else
jq -r 'map ({"Deployed By": .deployedBy.handle, "Deployment Hash": .hash, "Deployed At": .deployedAt, "Undeployed At": .undeployedAt, "Exposed At": .exposedAt }) | @tsv'
fi
}
deploy_create() {
curl_command "${SEND_BINARY[@]}" -d "$1" "$(url "/v2/deployments/create?environmentId=$2")"
}
deploy_delete() {
curl_command -X DELETE "$(url "/v2/deployments/$1")"
}
deploy_get() {
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/deployments/$1")" | jq '[.]' | deploy_format
}
deploy_expose() {
curl_command -X POST "$(url "/v2/deployments/expose/$1")?httpServiceVersion=0"
}
deploy_unexpose() {
curl_command -X DELETE "$(url "/v2/deployments/unexpose/$1")"
}
deploy_list() {
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/deployments")" | deploy_format
}
deploy_list_unassigned() {
if [ "$RAW" -eq 1 ]; then
JQ=(.)
else
JQ=(-r '.[] | [ .deployedBy.handle, .hash, .deployedAt, .exposedAt] | @tsv')
fi
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/unassigned")" | jq "${JQ[@]}"
}
deploy_list_tags() {
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/deployments/$1/tags")"
}
deploy_set_tag() {
curl_command -X POST "$(url "/v2/deployments/$1/tag/$2")"
}
deployd_untag() {
curl_command -X DELETE "$(url "/v2/deployments/$1/tag/$2")"
}
deploy_list_untagged() {
curl_command "$(url "/v2/deployments/untagged")"
}
deploy_command() {
if [ $# -lt 1 ]; then
deployment_help
else
command=$1 ; shift
case $command in
get)
deploy_get "$@"
;;
create)
deploy_create "$@"
;;
delete | del | d)
deploy_delete "$@"
;;
expose)
deploy_expose "$@"
;;
unexpose)
deploy_unexpose "$@"
;;
list | ls)
deploy_list
;;
unassigned)
deploy_list_unassigned
;;
untagged)
deploy_list_untagged
;;
tags | list-tags | all-tags | get-tags)
deploy_list_tags "$@"
;;
tag)
deploy_set_tag "$@"
;;
delete-tag)
deployd_untag "$@"
;;
help)
deployment_help
;;
*)
echo "Unknown command: $command"
;;
esac
fi
}
deployment_help() {
echo "Usage:"
echo "deployment [command]"
echo
echo "Commands:"
echo " get <deploymentId>"
echo " create <service> <environmentId>"
echo " list"
echo " expose <deploymentId>"
echo " unexpose <deploymentId>"
echo
echo " untagged"
echo " tags <deploymentId>"
echo " tag <deploymentId> <tag>"
echo " delete-tag <deploymentId> <tag>"
echo
echo "Notes:"
echo " <service> is literally the binary bytes of your service, good luck with that."
echo " <environmentId> is the UUID of the environment you want to deploy to."
echo " <deploymentId> is the UUID of the deployment you want to tag."
echo " acceptable spellings: deployment | deploy | dep | d"
}
# ██
# ▄▄█████▄ ███████ ▄████▄ ██▄████ ▄█████▄ ▄███▄██ ▄████▄
# ██▄▄▄▄ ▀ ██ ██▀ ▀██ ██▀ ▀ ▄▄▄██ ██▀ ▀██ ██▄▄▄▄██
# ▀▀▀▀██▄ ██ ██ ██ ██ ▄██▀▀▀██ ██ ██ ██▀▀▀▀▀▀
# █▄▄▄▄▄██ ██▄▄▄ ▀██▄▄██▀ ██ ██▄▄▄███ ▀██▄▄███ ▀██▄▄▄▄█
# ▀▀▀▀▀▀ ▀▀▀▀ ▀▀▀▀ ▀▀ ▀▀▀▀ ▀▀ ▄▀▀▀ ██ ▀▀▀▀▀
# ▀████▀▀
storage_create() {
curl_command -X POST "$(url "/v2/storage/create/$1")"
}
storage_get() {
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/storage/$1")"
}
storage_delete() {
curl_command -X DELETE "$(url "/v2/storage/$1")"
}
storage_list() {
if [ -x "$(which mlr)" ]; then
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/storage")" | jq -r -s '.[] | map (.environments = (.environments | join (","))) | map ({ Id: .id, Name: .name, Environments: .environments} ) | (.[0] | to_entries | map(.key)), (.[] | [.[]]) | @csv' | mlr -C --key-color=blue --csv --opprint sort -f shape
else
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/storage")" | jq -r -s '.[] | map (.environments = (.environments | join (","))) | map ({ Id: .id, Name: .name, Environments: .environments} ) | (.[0] | to_entries | map(.key)), (.[] | [.[]]) | @tsv'
fi
}
storage_assign() {
curl_command -X POST "$(url "/v2/storage/$1/assign/$2")"
}
storage_unassign() {
curl_command -X POST "$(url "/v2/storage/$1/unassign/$2")"
}
storage_command() {
if [ $# -lt 1 ]; then
storage_help
else
command=$1 ; shift
case $command in
create)
storage_create "$@"
;;
get)
storage_get "$@"
;;
delete)
storage_delete "$@"
;;
list)
storage_list
;;
assign)
storage_assign "$@"
;;
unassign)
storage_unassign "$@"
;;
help)
storage_help
;;
*)
echo "Unknown command: $command"
;;
esac
fi
}
storage_help() {
echo "Usage:"
echo "storage [command]"
echo
echo "Commands:"
echo " create <name>"
echo " get <name>"
echo " delete <name>"
echo " list"
echo " assign <name> <deploymentId>"
echo " unassign <name> <deploymentId>"
echo
echo "Notes:"
echo " acceptable spellings: storage | store | s"
}
# ▄▄▄▄
# ▀▀██
# ██ ▄████▄ ▄███▄██ ▄▄█████▄
# ██ ██▀ ▀██ ██▀ ▀██ ██▄▄▄▄ ▀
# ██ ██ ██ ██ ██ ▀▀▀▀██▄
# ██▄▄▄ ▀██▄▄██▀ ▀██▄▄███ █▄▄▄▄▄██
# ▀▀▀▀ ▀▀▀▀ ▄▀▀▀ ██ ▀▀▀▀▀▀
# ▀████▀▀
logs_get_deployment() {
curl_command "${ACCEPT_JSON[@]}" "$(url "/v2/logs/deployment/$1")" | jq .
}
log_command() {
if [ $# -lt 1 ]; then
logs_help
else
command=$1 ; shift
case $command in
by-deployment | by-deploy | by-d | d)
logs_get_deployment "$@"
;;
help)
logs_help
;;
*)
echo "Unknown command: $command"
;;
esac
fi
}
logs_help() {
echo "Usage:"
echo "logs [command]"
echo
echo "Commands:"
echo " by-deployment <deploymentId>"
echo " help"
echo
echo "Notes:"
echo " acceptable spellings: logs | log | l"
}
# ██
# ██ ▀▀
# ▄████▄ ██▄███▄ ███████ ████ ▄████▄ ██▄████▄ ▄▄█████▄
# ██▀ ▀██ ██▀ ▀██ ██ ██ ██▀ ▀██ ██▀ ██ ██▄▄▄▄ ▀
# ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ▀▀▀▀██▄
# ▀██▄▄██▀ ███▄▄██▀ ██▄▄▄ ▄▄▄██▄▄▄ ▀██▄▄██▀ ██ ██ █▄▄▄▄▄██
# ▀▀▀▀ ██ ▀▀▀ ▀▀▀▀ ▀▀▀▀▀▀▀▀ ▀▀▀▀ ▀▀ ▀▀ ▀▀▀▀▀▀
# ██
##
# verbosity levels:
# 0 - quiet
# 1 - normal
# 2 - verbose
: "${VERBOSITY:=1}"
: "${RAW:=0}"
: "${LOCAL:=1}"
options_command() {
if [ $# -lt 1 ]; then
options_help
else
case $1 in
verbose)
VERBOSITY=2
set -x
;;
quiet)
VERBOSITY=0
;;
normal)
VERBOSITY=1
;;
raw)
RAW=1
;;
pretty)
RAW=0
;;
local)
LOCAL=1
curl_login
;;
staging)
LOCAL=0
curl_login
;;
prod)
LOCAL=0
curl_login
;;
help)
options_help
;;
*)
red "unknown command!\n"
options_help
;;
esac
fi
}
options_help() {
echo "Usage:"
echo "> $0 [options]"
echo "Possible Options:"
echo " verbose — most verbose, show every command executed, secrets will be told"
echo " quiet — make as little noise as possible"
echo " normal — default chattiness"
echo
echo " raw — show raw JSON output"
echo " pretty — attempt to show data in pretty tables"
echo
echo " local — run commands against "
echo " prod — run commands against production server"
echo
echo " help — show this help message"
echo
echo "Notes:"
echo " * normal is the default"
echo " * Possible spellings: options | option | opt | o"
}
# ▄▄▄▄
# ▀▀██
# ██▄████ ▄████▄ ██▄███▄ ██
# ██▀ ██▄▄▄▄██ ██▀ ▀██ ██
# ██ ██▀▀▀▀▀▀ ██ ██ ██
# ██ ▀██▄▄▄▄█ ███▄▄██▀ ██▄▄▄
# ▀▀ ▀▀▀▀▀ ██ ▀▀▀ ▀▀▀▀