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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
|
#!/usr/bin/env sh
# # A GitHub API client library written in POSIX sh
#
# https://github.com/whiteinge/ok.sh
# BSD licensed.
#
# ## Requirements
#
# * A POSIX environment (tested against Busybox v1.19.4)
# * curl (tested against 7.32.0)
#
# ## Optional requirements
#
# * jq <http://stedolan.github.io/jq/> (tested against 1.3)
# If jq is not installed commands will output raw JSON; if jq is installed
# the output will be formatted and filtered for use with other shell tools.
#
# ## Setup
#
# Authentication credentials are read from a `$HOME/.netrc` file on UNIX
# machines or a `_netrc` file in `%HOME%` for UNIX environments under Windows.
# [Generate the token on GitHub](https://github.com/settings/tokens) under
# "Account Settings -> Applications".
# Restrict permissions on that file with `chmod 600 ~/.netrc`!
#
# machine api.github.com
# login <username>
# password <token>
#
# machine uploads.github.com
# login <username>
# password <token>
#
# Or set an environment `GITHUB_TOKEN=token`
#
# ## Configuration
#
# The following environment variables may be set to customize ${NAME}.
#
# * OK_SH_URL=${OK_SH_URL}
# Base URL for GitHub or GitHub Enterprise.
# * OK_SH_ACCEPT=${OK_SH_ACCEPT}
# The 'Accept' header to send with each request.
# * OK_SH_JQ_BIN=${OK_SH_JQ_BIN}
# The name of the jq binary, if installed.
# * OK_SH_VERBOSE=${OK_SH_VERBOSE}
# The debug logging verbosity level. Same as the verbose flag.
# * OK_SH_RATE_LIMIT=${OK_SH_RATE_LIMIT}
# Output current GitHub rate limit information to stderr.
# * OK_SH_DESTRUCTIVE=${OK_SH_DESTRUCTIVE}
# Allow destructive operations without prompting for confirmation.
# * OK_SH_MARKDOWN=${OK_SH_MARKDOWN}
# Output some text in Markdown format.
export NAME=$(basename "$0")
export VERSION='0.5.1'
export OK_SH_URL=${OK_SH_URL:-'https://api.github.com'}
export OK_SH_ACCEPT=${OK_SH_ACCEPT:-'application/vnd.github.v3+json'}
export OK_SH_JQ_BIN="${OK_SH_JQ_BIN:-jq}"
export OK_SH_VERBOSE="${OK_SH_VERBOSE:-0}"
export OK_SH_RATE_LIMIT="${OK_SH_RATE_LIMIT:-0}"
export OK_SH_DESTRUCTIVE="${OK_SH_DESTRUCTIVE:-0}"
export OK_SH_MARKDOWN="${OK_SH_MARKDOWN:-0}"
# Detect if jq is installed.
command -v "$OK_SH_JQ_BIN" 1>/dev/null 2>/dev/null
NO_JQ=$?
# Customizable logging output.
exec 4>/dev/null
exec 5>/dev/null
exec 6>/dev/null
export LINFO=4 # Info-level log messages.
export LDEBUG=5 # Debug-level log messages.
export LSUMMARY=6 # Summary output.
# Generate a carriage return so we can match on it.
# Using a variable because these are tough to specify in a portable way.
crlf=$(printf '\r\n')
# ## Main
# Generic functions not necessarily specific to working with GitHub.
# ### Help
# Functions for fetching and formatting help text.
_cols() {
sort | awk '
{ w[NR] = $0 }
END {
cols = 3
per_col = sprintf("%.f", NR / cols + 0.5) # Round up if decimal.
for (i = 1; i < per_col + 1; i += 1) {
for (j = 0; j < cols; j += 1) {
printf("%-24s", w[i + per_col * j])
}
printf("\n")
}
}
'
}
_links() { awk '{ print "* [" $0 "](#" $0 ")" }'; }
_funcsfmt() { if [ "$OK_SH_MARKDOWN" -eq 0 ]; then _cols; else _links; fi; }
help() {
# Output the help text for a command
#
# Usage:
#
# help commandname
#
# Positional arguments
#
local fname="$1"
# Function name to search for; if omitted searches whole file.
# Short-circuit if only producing help for a single function.
if [ $# -gt 0 ]; then
awk -v fname="^$fname\\\(\\\) \\\{$" '$0 ~ fname, /^}/ { print }' "$0" \
| _helptext
return
fi
_helptext < "$0"
printf '\n'
help __main
printf '\n'
printf '## Table of Contents\n'
printf '\n### Utility and request/response commands\n\n'
_all_funcs public=0 | _funcsfmt
printf '\n### GitHub commands\n\n'
_all_funcs private=0 | _funcsfmt
printf '\n## Commands\n\n'
for cmd in $(_all_funcs public=0); do
printf '### %s\n\n' "$cmd"
help "$cmd"
printf '\n'
done
for cmd in $(_all_funcs private=0); do
printf '### %s\n\n' "$cmd"
help "$cmd"
printf '\n'
done
}
_all_funcs() {
# List all functions found in the current file in the order they appear
#
# Keyword arguments
#
local public=1
# `0` do not output public functions.
local private=1
# `0` do not output private functions.
for arg in "$@"; do
case $arg in
(public=*) public="${arg#*=}";;
(private=*) private="${arg#*=}";;
esac
done
awk -v public="$public" -v private="$private" '
$1 !~ /^__/ && /^[a-zA-Z0-9_]+\s*\(\)/ {
sub(/\(\)$/, "", $1)
if (!public && substr($1, 1, 1) != "_") next
if (!private && substr($1, 1, 1) == "_") next
print $1
}
' "$0"
}
__main() {
# ## Usage
#
# `${NAME} [<flags>] (command [<arg>, <name=value>...])`
#
# ${NAME} -h # Short, usage help text.
# ${NAME} help # All help text. Warning: long!
# ${NAME} help command # Command-specific help text.
# ${NAME} command # Run a command with and without args.
# ${NAME} command foo bar baz=Baz qux='Qux arg here'
#
# Flag | Description
# ---- | -----------
# -V | Show version.
# -h | Show this screen.
# -j | Output raw JSON; don't process with jq.
# -q | Quiet; don't print to stdout.
# -r | Print current GitHub API rate limit to stderr.
# -v | Logging output; specify multiple times: info, debug, trace.
# -x | Enable xtrace debug logging.
# -y | Answer 'yes' to any prompts.
#
# Flags _must_ be the first argument to `${NAME}`, before `command`.
local cmd
local ret
local opt
local OPTARG
local OPTIND
local quiet=0
local temp_dir="${TMPDIR-/tmp}/${NAME}.${$}.$(awk \
'BEGIN {srand(); printf "%d\n", rand() * 10^10}')"
local summary_fifo="${temp_dir}/oksh_summary.fifo"
# shellcheck disable=SC2154
trap '
excode=$?; trap - EXIT;
exec 4>&-
exec 5>&-
exec 6>&-
rm -rf '"$temp_dir"'
exit $excode
' INT TERM EXIT
while getopts Vhjqrvxy opt; do
case $opt in
V) printf 'Version: %s\n' $VERSION
exit;;
h) help __main
printf '\nAvailable commands:\n\n'
_all_funcs private=0 | _cols
printf '\n'
exit;;
j) NO_JQ=1;;
q) quiet=1;;
r) OK_SH_RATE_LIMIT=1;;
v) OK_SH_VERBOSE=$(( OK_SH_VERBOSE + 1 ));;
x) set -x;;
y) OK_SH_DESTRUCTIVE=1;;
esac
done
shift $(( OPTIND - 1 ))
if [ -z "$1" ] ; then
printf 'No command given. Available commands:\n\n%s\n' \
"$(_all_funcs private=0 | _cols)" 1>&2
exit 1
fi
[ $OK_SH_VERBOSE -gt 0 ] && exec 4>&2
[ $OK_SH_VERBOSE -gt 1 ] && exec 5>&2
if [ $quiet -eq 1 ]; then
exec 1>/dev/null 2>/dev/null
fi
if [ "$OK_SH_RATE_LIMIT" -eq 1 ] ; then
mkdir -m 700 "$temp_dir" || {
printf 'failed to create temp_dir\n' >&2; exit 1;
}
mkfifo "$summary_fifo"
# Hold the fifo open so it will buffer input until emptied.
exec 6<>"$summary_fifo"
fi
# Run the command.
cmd="$1" && shift
_log debug "Running command ${cmd}."
"$cmd" "$@"
ret=$?
_log debug "Command ${cmd} exited with ${?}."
# Output any summary messages.
if [ "$OK_SH_RATE_LIMIT" -eq 1 ] ; then
cat "$summary_fifo" 1>&2 &
exec 6>&-
fi
exit $ret
}
_log() {
# A lightweight logging system based on file descriptors
#
# Usage:
#
# _log debug 'Starting the combobulator!'
#
# Positional arguments
#
local level="${1:?Level is required.}"
# The level for a given log message. (info or debug)
local message="${2:?Message is required.}"
# The log message.
shift 2
local lname
case "$level" in
info) lname='INFO'; level=$LINFO ;;
debug) lname='DEBUG'; level=$LDEBUG ;;
*) printf 'Invalid logging level: %s\n' "$level" ;;
esac
printf '%s %s: %s\n' "$NAME" "$lname" "$message" 1>&$level
}
_helptext() {
# Extract contiguous lines of comments and function params as help text
#
# Indentation will be ignored. She-bangs will be ignored. Local variable
# declarations and their default values can also be pulled in as
# documentation. Exits upon encountering the first blank line.
#
# Exported environment variables can be used for string interpolation in
# the extracted commented text.
#
# Input
#
# * (stdin)
# The text of a function body to parse.
awk '
NR != 1 && /^\s*#/ {
line=$0
while(match(line, "[$]{[^}]*}")) {
var=substr(line, RSTART+2, RLENGTH -3)
gsub("[$]{"var"}", ENVIRON[var], line)
}
gsub(/^\s*#\s?/, "", line)
print line
}
/^\s*local/ {
sub(/^\s*local /, "")
sub(/\$\{/, "$", $0)
sub(/:.*}/, "", $0)
print "* `" $0 "`\n"
}
!NF { exit }'
}
# ### Request-response
# Functions for making HTTP requests and processing HTTP responses.
_format_json() {
# Create formatted JSON from name=value pairs
#
# Usage:
# ```
# ok.sh _format_json foo=Foo bar=123 baz=true qux=Qux=Qux quux='Multi-line
# string' quuz=\'5.20170918\' \
# corge="$(ok.sh _format_json grault=Grault)" \
# garply="$(ok.sh _format_json -a waldo true 3)"
# ```
#
# Return:
# ```
# {
# "garply": [
# "waldo",
# true,
# 3
# ],
# "foo": "Foo",
# "corge": {
# "grault": "Grault"
# },
# "baz": true,
# "qux": "Qux=Qux",
# "quux": "Multi-line\nstring",
# "quuz": "5.20170918",
# "bar": 123
# }
# ```
#
# Tries not to quote numbers, booleans, nulls, or nested structures.
# Note, nested structures must be quoted since the output contains spaces.
#
# The `-a` option will create an array instead of an object. This option
# must come directly after the _format_json command and before any
# operands. E.g., `_format_json -a foo bar baz`.
#
# If jq is installed it will also validate the output.
#
# Positional arguments
#
# * $1 - $9
#
# Each positional arg must be in the format of `name=value` which will be
# added to a single, flat JSON object.
local opt
local OPTIND
local is_array=0
local use_env=1
while getopts a opt; do
case $opt in
a) is_array=1; unset use_env;;
esac
done
shift $(( OPTIND - 1 ))
_log debug "Formatting ${#} parameters as JSON."
env -i -- ${use_env+"$@"} awk -v is_array="$is_array" '
function isnum(x){ return (x == x + 0) }
function isnull(x){ return (x == "null" ) }
function isbool(x){ if (x == "true" || x == "false") return 1 }
function isnested(x) { if (substr(x, 0, 1) == "[" \
|| substr(x, 0, 1) == "{") return 1 }
function castOrQuote(val) {
if (!isbool(val) && !isnum(val) && !isnull(val) && !isnested(val)) {
sub(/^('\''|")/, "", val) # Remove surrounding quotes
sub(/('\''|")$/, "", val)
gsub(/"/, "\\\"", val) # Escape double-quotes.
gsub(/\n/, "\\n", val) # Replace newlines with \n text.
val = "\"" val "\""
return val
} else {
return val
}
}
BEGIN {
printf("%s", is_array ? "[" : "{")
for (i = 1; i < length(ARGV); i += 1) {
arg = ARGV[i]
if (is_array == 1) {
val = castOrQuote(arg)
printf("%s%s", sep, val)
} else {
name = substr(arg, 0, index(arg, "=") - 1)
val = castOrQuote(ENVIRON[name])
printf("%s\"%s\": %s", sep, name, val)
}
sep = ", "
ARGV[i] = ""
}
printf("%s", is_array ? "]" : "}")
}' "$@"
}
_format_urlencode() {
# URL encode and join name=value pairs
#
# Usage:
# ```
# _format_urlencode foo='Foo Foo' bar='<Bar>&/Bar/'
# ```
#
# Return:
# ```
# foo=Foo%20Foo&bar=%3CBar%3E%26%2FBar%2F
# ```
#
# Ignores pairs if the value begins with an underscore.
_log debug "Formatting ${#} parameters as urlencoded"
env -i -- "$@" awk '
function escape(str, c, i, len, res) {
len = length(str)
res = ""
for (i = 1; i <= len; i += 1) {
c = substr(str, i, 1);
if (c ~ /[0-9A-Za-z]/)
res = res c
else
res = res "%" sprintf("%02X", ord[c])
}
return res
}
BEGIN {
for (i = 0; i <= 255; i += 1) ord[sprintf("%c", i)] = i;
for (j = 1; j < length(ARGV); j += 1) {
arg = ARGV[j]
name = substr(arg, 0, index(arg, "=") - 1)
if (substr(name, 1, 1) == "_") continue
val = ENVIRON[name]
printf("%s%s=%s", sep, name, escape(val))
sep = "&"
ARGV[j] = ""
}
}' "$@"
}
_filter_json() {
# Filter JSON input using jq; outputs raw JSON if jq is not installed
#
# Usage:
#
# printf '[{"foo": "One"}, {"foo": "Two"}]' | \
# ok.sh _filter_json '.[] | "\(.foo)"'
#
# * (stdin)
# JSON input.
local _filter="$1"
# A string of jq filters to apply to the input stream.
_log debug 'Filtering JSON.'
if [ $NO_JQ -ne 0 ] ; then
_log debug 'Bypassing jq processing.'
cat
return
fi
"${OK_SH_JQ_BIN}" -c -r "${_filter}"
[ $? -eq 0 ] || printf 'jq parse error; invalid JSON.\n' 1>&2
}
_get_mime_type() {
# Guess the mime type for a file based on the file extension
#
# Usage:
#
# local mime_type
# _get_mime_type "foo.tar"; printf 'mime is: %s' "$mime_type"
#
# Sets the global variable `mime_type` with the result. (If this function
# is called from within a function that has declared a local variable of
# that name it will update the local copy and not set a global.)
#
# Positional arguments
#
local filename="${1:?Filename is required.}"
# The full name of the file, with extension.
# Taken from Apache's mime.types file (public domain).
case "$filename" in
*.bz2) mime_type=application/x-bzip2 ;;
*.exe) mime_type=application/x-msdownload ;;
*.tar.gz | *.gz | *.tgz) mime_type=application/x-gzip ;;
*.jpg | *.jpeg | *.jpe | *.jfif) mime_type=image/jpeg ;;
*.json) mime_type=application/json ;;
*.pdf) mime_type=application/pdf ;;
*.png) mime_type=image/png ;;
*.rpm) mime_type=application/x-rpm ;;
*.svg | *.svgz) mime_type=image/svg+xml ;;
*.tar) mime_type=application/x-tar ;;
*.txt) mime_type=text/plain ;;
*.yaml) mime_type=application/x-yaml ;;
*.apk) mime_type=application/vnd.android.package-archive ;;
*.zip) mime_type=application/zip ;;
*.jar) mime_type=application/java-archive ;;
*.war) mime_type=application/zip ;;
esac
_log debug "Guessed mime type of '${mime_type}' for '${filename}'."
}
_get_confirm() {
# Prompt the user for confirmation
#
# Usage:
#
# local confirm; _get_confirm
# [ "$confirm" -eq 1 ] && printf 'Good to go!\n'
#
# If global confirmation is set via `$OK_SH_DESTRUCTIVE` then the user
# is not prompted. Assigns the user's confirmation to the `confirm` global
# variable. (If this function is called within a function that has a local
# variable of that name, the local variable will be updated instead.)
#
# Positional arguments
#
local message="${1:-Are you sure?}"
# The message to prompt the user with.
local answer
if [ "$OK_SH_DESTRUCTIVE" -eq 1 ] ; then
confirm=$OK_SH_DESTRUCTIVE
return
fi
printf '%s ' "$message"
read -r answer
! printf '%s\n' "$answer" | grep -Eq "$(locale yesexpr)"
confirm=$?
}
_opts_filter() {
# Extract common jq filter keyword options and assign to vars
#
# Usage:
#
# local filter
# _opts_filter "$@"
for arg in "$@"; do
case $arg in
(_filter=*) _filter="${arg#*=}";;
esac
done
}
_opts_pagination() {
# Extract common pagination keyword options and assign to vars
#
# Usage:
#
# local _follow_next
# _opts_pagination "$@"
for arg in "$@"; do
case $arg in
(_follow_next=*) _follow_next="${arg#*=}";;
(_follow_next_limit=*) _follow_next_limit="${arg#*=}";;
esac
done
}
_opts_qs() {
# Extract common query string keyword options and assign to vars
#
# Usage:
#
# local qs
# _opts_qs "$@"
# _get "/some/path${qs}"
local querystring=$(_format_urlencode "$@")
qs="${querystring:+?$querystring}"
}
_request() {
# A wrapper around making HTTP requests with curl
#
# Usage:
# ```
# # Get JSON for all issues:
# _request /repos/saltstack/salt/issues
#
# # Send a POST request; parse response using jq:
# printf '{"title": "%s", "body": "%s"}\n' "Stuff" "Things" \
# | _request /some/path | jq -r '.[url]'
#
# # Send a PUT request; parse response using jq:
# printf '{"title": "%s", "body": "%s"}\n' "Stuff" "Things" \
# | _request /repos/:owner/:repo/issues method=PUT | jq -r '.[url]'
#
# # Send a conditional-GET request:
# _request /users etag=edd3a0d38d8c329d3ccc6575f17a76bb
# ```
#
# Input
#
# * (stdin)
# Data that will be used as the request body.
#
# Positional arguments
#
local path="${1:?Path is required.}"
# The URL path for the HTTP request.
# Must be an absolute path that starts with a `/` or a full URL that
# starts with http(s). Absolute paths will be append to the value in
# `$OK_SH_URL`.
#
# Keyword arguments
#
local method='GET'
# The method to use for the HTTP request.
local content_type='application/json'
# The value of the Content-Type header to use for the request.
local etag
# An optional Etag to send as the If-None-Match header.
shift 1
local cmd
local arg
local has_stdin
local trace_curl
case $path in
(http*) : ;;
*) path="${OK_SH_URL}${path}" ;;
esac
for arg in "$@"; do
case $arg in
(method=*) method="${arg#*=}";;
(content_type=*) content_type="${arg#*=}";;
(etag=*) etag="${arg#*=}";;
esac
done
case "$method" in
POST | PUT | PATCH) has_stdin=1;;
esac
[ $OK_SH_VERBOSE -eq 3 ] && trace_curl=1
[ "$OK_SH_VERBOSE" -eq 1 ] && set -x
# shellcheck disable=SC2086
curl -nsSig \
-H "Accept: ${OK_SH_ACCEPT}" \
-H "Content-Type: ${content_type}" \
${GITHUB_TOKEN:+-H "Authorization: token ${GITHUB_TOKEN}"} \
${etag:+-H "If-None-Match: \"${etag}\""} \
${has_stdin:+--data-binary @-} \
${trace_curl:+--trace-ascii /dev/stderr} \
-X "${method}" \
"${path}"
set +x
}
_response() {
# Process an HTTP response from curl
#
# Output only headers of interest followed by the response body. Additional
# processing is performed on select headers to make them easier to parse
# using shell tools.
#
# Usage:
# ```
# # Send a request; output the response and only select response headers:
# _request /some/path | _response status_code ETag Link_next
#
# # Make request using curl; output response with select response headers;
# # assign response headers to local variables:
# curl -isS example.com/some/path | _response status_code status_text | {
# local status_code status_text
# read -r status_code
# read -r status_text
# }
# ```
#
# Header reformatting
#
# * HTTP Status
#
# The HTTP line is split into separate `http_version`, `status_code`, and
# `status_text` variables.
#
# * ETag
#
# The surrounding quotes are removed.
#
# * Link
#
# Each URL in the Link header is expanded with the URL type appended to
# the name. E.g., `Link_first`, `Link_last`, `Link_next`.
#
# Positional arguments
#
# * $1 - $9
#
# Each positional arg is the name of an HTTP header. Each header value is
# output in the same order as each argument; each on a single line. A
# blank line is output for headers that cannot be found.
local hdr
local val
local http_version
local status_code=100
local status_text
local headers output
_log debug 'Processing response.'
while [ "${status_code}" = "100" ]; do
read -r http_version status_code status_text
status_text="${status_text%${crlf}}"
http_version="${http_version#HTTP/}"
_log debug "Response status is: ${status_code} ${status_text}"
if [ "${status_code}" = "100" ]; then
_log debug "Ignoring response '${status_code} ${status_text}', skipping to real response."
while IFS=": " read -r hdr val; do
# Headers stop at the first blank line.
[ "$hdr" = "$crlf" ] && break
val="${val%${crlf}}"
_log debug "Unexpected additional header: ${hdr}: ${val}"
done
fi
done
headers="http_version: ${http_version}
status_code: ${status_code}
status_text: ${status_text}
"
while IFS=": " read -r hdr val; do
# Headers stop at the first blank line.
[ "$hdr" = "$crlf" ] && break
val="${val%${crlf}}"
# Process each header; reformat some to work better with sh tools.
case "$hdr" in
# Update the GitHub rate limit trackers.
X-RateLimit-Remaining)
printf 'GitHub remaining requests: %s\n' "$val" 1>&$LSUMMARY ;;
X-RateLimit-Reset)
awk -v gh_reset="$val" 'BEGIN {
srand(); curtime = srand()
print "GitHub seconds to reset: " gh_reset - curtime
}' 1>&$LSUMMARY ;;
# Remove quotes from the etag header.
ETag) val="${val#\"}"; val="${val%\"}" ;;
# Split the URLs in the Link header into separate pseudo-headers.
Link) headers="${headers}$(printf '%s' "$val" | awk '
BEGIN { RS=", "; FS="; "; OFS=": " }
{
sub(/^rel="/, "", $2); sub(/"$/, "", $2)
sub(/^ *</, "", $1); sub(/>$/, "", $1)
print "Link_" $2, $1
}')
" # need trailing newline
;;
esac
headers="${headers}${hdr}: ${val}
" # need trailing newline
done
# Output requested headers in deterministic order.
for arg in "$@"; do
_log debug "Outputting requested header '${arg}'."
output=$(printf '%s' "$headers" | while IFS=": " read -r hdr val; do
[ "$hdr" = "$arg" ] && printf '%s' "$val"
done)
printf '%s\n' "$output"
done
# Output the response body.
cat
}
_get() {
# A wrapper around _request() for common GET patterns
#
# Will automatically follow 'next' pagination URLs in the Link header.
#
# Usage:
#
# _get /some/path
# _get /some/path _follow_next=0
# _get /some/path _follow_next_limit=200 | jq -c .
#
# Positional arguments
#
local path="${1:?Path is required.}"
# The HTTP path or URL to pass to _request().
#
# Keyword arguments
#
# * _follow_next=1
#
# Automatically look for a 'Links' header and follow any 'next' URLs.
#
# * _follow_next_limit=50
#
# Maximum number of 'next' URLs to follow before stopping.
shift 1
local status_code
local status_text
local next_url
# If the variable is unset or empty set it to a default value. Functions
# that call this function can pass these parameters in one of two ways:
# explicitly as a keyword arg or implicitly by setting variables of the same
# names within the local scope.
# shellcheck disable=SC2086
if [ -z ${_follow_next+x} ] || [ -z "${_follow_next}" ]; then
local _follow_next=1
fi
# shellcheck disable=SC2086
if [ -z ${_follow_next_limit+x} ] || [ -z "${_follow_next_limit}" ]; then
local _follow_next_limit=50
fi
_opts_pagination "$@"
_request "$path" | _response status_code status_text Link_next | {
read -r status_code
read -r status_text
read -r next_url
case "$status_code" in
20*) : ;;
4*) printf 'Client Error: %s %s\n' \
"$status_code" "$status_text" 1>&2; exit 1 ;;
5*) printf 'Server Error: %s %s\n' \
"$status_code" "$status_text" 1>&2; exit 1 ;;
esac
# Output response body.
cat
[ "$_follow_next" -eq 1 ] || return
_log info "Remaining next link follows: ${_follow_next_limit}"
if [ -n "$next_url" ] && [ $_follow_next_limit -gt 0 ] ; then
_follow_next_limit=$(( _follow_next_limit - 1 ))
_get "$next_url" "_follow_next_limit=${_follow_next_limit}"
fi
}
}
_post() {
# A wrapper around _request() for common POST / PUT patterns
#
# Usage:
#
# _format_json foo=Foo bar=Bar | _post /some/path
# _format_json foo=Foo bar=Bar | _post /some/path method='PUT'
# _post /some/path filename=somearchive.tar
# _post /some/path filename=somearchive.tar mime_type=application/x-tar
# _post /some/path filename=somearchive.tar \
# mime_type=$(file -b --mime-type somearchive.tar)
#
# Input
#
# * (stdin)
# Optional. See the `filename` argument also.
# Data that will be used as the request body.
#
# Positional arguments
#
local path="${1:?Path is required.}"
# The HTTP path or URL to pass to _request().
#
# Keyword arguments
#
local method='POST'
# The method to use for the HTTP request.
local filename
# Optional. See the `stdin` option above also.
# Takes precedence over any data passed as stdin and loads a file off the
# file system to serve as the request body.
local mime_type
# The value of the Content-Type header to use for the request.
# If the `filename` argument is given this value will be guessed from the
# file extension. If the `filename` argument is not given (i.e., using
# stdin) this value defaults to `application/json`. Specifying this
# argument overrides all other defaults or guesses.
shift 1
for arg in "$@"; do
case $arg in
(method=*) method="${arg#*=}";;
(filename=*) filename="${arg#*=}";;
(mime_type=*) mime_type="${arg#*=}";;
esac
done
# Make either the file or stdin available as fd7.
if [ -n "$filename" ] ; then
if [ -r "$filename" ] ; then
_log debug "Using '${filename}' as POST data."
[ -n "$mime_type" ] || _get_mime_type "$filename"
: ${mime_type:?The MIME type could not be guessed.}
exec 7<"$filename"
else
printf 'File could not be found or read.\n' 1>&2
exit 1
fi
else
_log debug "Using stdin as POST data."
mime_type='application/json'
exec 7<&0
fi
_request "$path" method="$method" content_type="$mime_type" 0<&7 \
| _response status_code status_text \
| {
read -r status_code
read -r status_text
case "$status_code" in
20*) : ;;
4*) printf 'Client Error: %s %s\n' \
"$status_code" "$status_text" 1>&2; exit 1 ;;
5*) printf 'Server Error: %s %s\n' \
"$status_code" "$status_text" 1>&2; exit 1 ;;
esac
# Output response body.
cat
}
}
_delete() {
# A wrapper around _request() for common DELETE patterns
#
# Usage:
#
# _delete '/some/url'
#
# Return: 0 for success; 1 for failure.
#
# Positional arguments
#
local url="${1:?URL is required.}"
# The URL to send the DELETE request to.
local status_code
_request "${url}" method='DELETE' | _response status_code | {
read -r status_code
[ "$status_code" = "204" ]
exit $?
}
}
# ## GitHub
# Friendly functions for common GitHub tasks.
# ### Authorization
# Perform authentication and authorization.
show_scopes() {
# Show the permission scopes for the currently authenticated user
#
# Usage:
#
# show_scopes
local oauth_scopes
_request '/' | _response X-OAuth-Scopes | {
read -r oauth_scopes
printf '%s\n' "$oauth_scopes"
# Dump any remaining response body.
cat >/dev/null
}
}
# ### Repository
# Create, update, delete, list repositories.
org_repos() {
# List organization repositories
#
# Usage:
#
# org_repos myorg
# org_repos myorg type=private per_page=10
# org_repos myorg _filter='.[] | "\(.name)\t\(.owner.login)"'
#
# Positional arguments
#
local org="${1:?Org name required.}"
# Organization GitHub login or id for which to list repos.
#
# Keyword arguments
#
local _follow_next
# Automatically look for a 'Links' header and follow any 'next' URLs.
local _follow_next_limit
# Maximum number of 'next' URLs to follow before stopping.
local _filter='.[] | "\(.name)\t\(.ssh_url)"'
# A jq filter to apply to the return data.
#
# Querystring arguments may also be passed as keyword arguments:
#
# * `per_page`
# * `type`
shift 1
local qs
_opts_pagination "$@"
_opts_filter "$@"
_opts_qs "$@"
_get "/orgs/${org}/repos${qs}" | _filter_json "${_filter}"
}
org_teams() {
# List teams
#
# Usage:
#
# org_teams org
#
# Positional arguments
#
local org="${1:?Org name required.}"
# Organization GitHub login or id.
#
# Keyword arguments
#
local _filter='.[] | "\(.name)\t\(.id)\t\(.permission)"'
# A jq filter to apply to the return data.
shift 1
_opts_filter "$@"
_get "/orgs/${org}/teams" \
| _filter_json "${_filter}"
}
org_members() {
# List organization members
#
# Usage:
#
# org_members org
#
# Positional arguments
#
local org="${1:?Org name required.}"
# Organization GitHub login or id.
#
# Keyword arguments
#
local _filter='.[] | "\(.login)\t\(.id)"'
# A jq filter to apply to the return data.
shift 1
_opts_filter "$@"
_get "/orgs/${org}/members" \
| _filter_json "${_filter}"
}
team_members() {
# List team members
#
# Usage:
#
# team_members team_id
#
# Positional arguments
#
local team_id="${1:?Team id required.}"
# Team id.
#
# Keyword arguments
#
local _filter='.[] | "\(.login)\t\(.id)"'
# A jq filter to apply to the return data.
shift 1
_opts_filter "$@"
_get "/teams/${team_id}/members" \
| _filter_json "${_filter}"
}
list_repos() {
# List user repositories
#
# Usage:
#
# list_repos
# list_repos user
#
# Positional arguments
#
local user="$1"
# Optional GitHub user login or id for which to list repos.
#
# Keyword arguments
#
local _filter='.[] | "\(.name)\t\(.html_url)"'
# A jq filter to apply to the return data.
#
# Querystring arguments may also be passed as keyword arguments:
#
# * `direction`
# * `per_page`
# * `sort`
# * `type`
shift 1
local qs
_opts_filter "$@"
_opts_qs "$@"
if [ -n "$user" ] ; then
url="/users/${user}/repos"
else
url='/user/repos'
fi
_get "${url}${qs}" | _filter_json "${_filter}"
}
list_branches() {
# List branches of a specified repository.
# ( https://developer.github.com/v3/repos/#list_branches )
#
# Usage:
#
# list_branches user repo
#
# Positional arguments
#
# GitHub user login or id for which to list branches
# Name of the repo for which to list branches
#
local user="${1:?User name required.}"
local repo="${2:?Repo name required.}"
shift 2
#
# Keyword arguments
#
local _filter='.[] | "\(.name)"'
# A jq filter to apply to the return data.
#
# Querystring arguments may also be passed as keyword arguments:
#
# * `direction`
# * `per_page`
# * `sort`
# * `type`
local qs
_opts_filter "$@"
_opts_qs "$@"
url="/repos/${user}/${repo}/branches"
_get "${url}${qs}" | _filter_json "${_filter}"
}
list_contributors() {
# List contributors to the specified repository, sorted by the number of commits per contributor in descending order.
# ( https://developer.github.com/v3/repos/#list-contributors )
#
# Usage:
#
# list_contributors user repo
#
# Positional arguments
#
local user="${1:?User name required.}"
# GitHub user login or id for which to list contributors
local repo="${2:?Repo name required.}"
# Name of the repo for which to list contributors
#
# Keyword arguments
#
local _filter='.[] | "\(.login)\t\(.type)\tType:\(.type)\tContributions:\(.contributions)"'
# A jq filter to apply to the return data.
#
# Querystring arguments may also be passed as keyword arguments:
#
# * `direction`
# * `per_page`
# * `sort`
# * `type`
shift 2
local qs
_opts_filter "$@"
_opts_qs "$@"
url="/repos/${user}/${repo}/contributors"
_get "${url}${qs}" | _filter_json "${_filter}"
}
list_collaborators() {
# List collaborators to the specified repository, sorted by the number of commits per collaborator in descending order.
# ( https://developer.github.com/v3/repos/#list-collaborators )
#
# Usage:
#
# list_collaborators someuser/somerepo
#
# Positional arguments
# GitHub user login or id for which to list collaborators
# Name of the repo for which to list collaborators
#
local repo="${1:?Repo name required.}"
#
# Keyword arguments
#
local _filter='.[] | "\(.login)\t\(.type)\tType:\(.type)\tPermissions:\(.permissions)"'
# A jq filter to apply to the return data.
#
# Querystring arguments may also be passed as keyword arguments:
#
# * `direction`
# * `per_page`
# * `sort`
# * `type`
shift 1
local qs
_opts_filter "$@"
_opts_qs "$@"
url="/repos/${repo}/collaborators"
_get "${url}${qs}" | _filter_json "${_filter}"
}
list_hooks() {
# List webhooks from the specified repository.
# ( https://developer.github.com/v3/repos/hooks/#list-hooks )
#
# Usage:
#
# list_hooks owner/repo
#
# Positional arguments
#
local repo="${1:?Repo name required.}"
# Name of the repo for which to list contributors
# Owner is mandatory, like 'owner/repo'
#
local _filter='.[] | "\(.name)\t\(.config.url)"'
# A jq filter to apply to the return data.
#
shift 1
_opts_filter "$@"
url="/repos/${repo}/hooks"
_get "${url}" | _filter_json "${_filter}"
}
list_gists() {
# List gists for the current authenticated user or a specific user
#
# https://developer.github.com/v3/gists/#list-a-users-gists
#
# Usage:
#
# list_gists
# list_gists <username>
#
# Positional arguments
#
local username="$1"
# An optional user to filter listing
#
# Keyword arguments
#
local _follow_next
# Automatically look for a 'Links' header and follow any 'next' URLs.
local _follow_next_limit
# Maximum number of 'next' URLs to follow before stopping.
local _filter='.[] | "\(.id)\t\(.description)"'
# A jq filter to apply to the return data.
local url
case "$username" in
('') url='/gists';;
(*=*) url='/gists';;
(*) url="/users/${username}/gists"; shift 1;;
esac
_opts_pagination "$@"
_opts_filter "$@"
_get "${url}" | _filter_json "${_filter}"
}
public_gists() {
# List public gists
#
# https://developer.github.com/v3/gists/#list-all-public-gists
#
# Usage:
#
# public_gists
#
# Keyword arguments
#
local _follow_next
# Automatically look for a 'Links' header and follow any 'next' URLs.
local _follow_next_limit
# Maximum number of 'next' URLs to follow before stopping.
local _filter='.[] | "\(.id)\t\(.description)"'
# A jq filter to apply to the return data.
_opts_pagination "$@"
_opts_filter "$@"
_get '/gists/public' | _filter_json "${_filter}"
}
gist() {
# Get a single gist
#
# https://developer.github.com/v3/gists/#get-a-single-gist
#
# Usage:
#
# get_gist
#
# Positional arguments
#
local gist_id="${1:?Gist ID required.}"
# ID of gist to fetch.
#
# Keyword arguments
#
local _filter='.files | keys | join(", ")'
# A jq filter to apply to the return data.
shift 1
_opts_filter "$@"
_get "/gists/${gist_id}" | _filter_json "${_filter}"
}
add_collaborator() {
# Add a collaborator to a repository
#
# Usage:
#
# add_collaborator someuser/somerepo collaboratoruser permission
#
# Positional arguments
#
local repo="${1:?Repo name required.}"
# A GitHub repository.
local collaborator="${2:?Collaborator name required.}"
# A new collaborator.
local permission="${3:?Permission required. One of: push pull admin}"
# The permission level for this collaborator. One of `push`, `pull`,
# `admin`. The `pull` and `admin` permissions are valid for organization
# repos only.
case $permission in
push|pull|admin) :;;
*) printf 'Permission invalid: %s\nMust be one of: push pull admin\n' \
"$permission" 1>&2; exit 1 ;;
esac
#
# Keyword arguments
#
local _filter='"\(.name)\t\(.color)"'
# A jq filter to apply to the return data.
_opts_filter "$@"
_format_json permission="$permission" \
| _post "/repos/${repo}/collaborators/${collaborator}" method='PUT' \
| _filter_json "$_filter"
}
delete_collaborator() {
# Delete a collaborator to a repository
#
# Usage:
#
# delete_collaborator someuser/somerepo collaboratoruser permission
#
# Positional arguments
#
local repo="${1:?Repo name required.}"
# A GitHub repository.
local collaborator="${2:?Collaborator name required.}"
# A new collaborator.
shift 2
local confirm
_get_confirm 'This will permanently delete the collaborator from this repo. Continue?'
[ "$confirm" -eq 1 ] || exit 0
_delete "/repos/${repo}/collaborators/${collaborator}"
exit $?
}
create_repo() {
# Create a repository for a user or organization
#
# Usage:
#
# create_repo foo
# create_repo bar description='Stuff and things' homepage='example.com'
# create_repo baz organization=myorg
#
# Positional arguments
#
local name="${1:?Repo name required.}"
# Name of the new repo
#
# Keyword arguments
#
local _filter='"\(.name)\t\(.html_url)"'
# A jq filter to apply to the return data.
#
# POST data may also be passed as keyword arguments:
#
# * `auto_init`,
# * `description`
# * `gitignore_template`
# * `has_downloads`
# * `has_issues`
# * `has_wiki`,
# * `homepage`
# * `organization`
# * `private`
# * `team_id`
shift 1
_opts_filter "$@"
local url
local organization
for arg in "$@"; do
case $arg in
(organization=*) organization="${arg#*=}";;
esac
done
if [ -n "$organization" ] ; then
url="/orgs/${organization}/repos"
else
url='/user/repos'
fi
_format_json "name=${name}" "$@" | _post "$url" | _filter_json "${_filter}"
}
delete_repo() {
# Delete a repository for a user or organization
#
# Usage:
#
# delete_repo owner repo
#
# The currently authenticated user must have the `delete_repo` scope. View
# current scopes with the `show_scopes()` function.
#
# Positional arguments
#
local owner="${1:?Owner name required.}"
# Name of the new repo
local repo="${2:?Repo name required.}"
# Name of the new repo
shift 2
local confirm
_get_confirm 'This will permanently delete a repository! Continue?'
[ "$confirm" -eq 1 ] || exit 0
_delete "/repos/${owner}/${repo}"
exit $?
}
fork_repo() {
# Fork a repository from a user or organization to own account or organization
#
# Usage:
#
# fork_repo owner repo
#
# Positional arguments
#
local owner="${1:?Owner name required.}"
# Name of existing user or organization
local repo="${2:?Repo name required.}"
# Name of the existing repo
#
#
# Keyword arguments
#
local _filter='"\(.clone_url)\t\(.ssh_url)"'
# A jq filter to apply to the return data.
#
# POST data may also be passed as keyword arguments:
#
# * `organization` (The organization to clone into; default: your personal account)
shift 2
_opts_filter "$@"
_format_json "$@" | _post "/repos/${owner}/${repo}/forks" \
| _filter_json "${_filter}"
exit $? # might take a bit time...
}
# ### Releases
# Create, update, delete, list releases.
list_releases() {
# List releases for a repository
#
# https://developer.github.com/v3/repos/releases/#list-releases-for-a-repository
#
# Usage:
#
# list_releases org repo '\(.assets[0].name)\t\(.name.id)'
#
# Positional arguments
#
local owner="${1:?Owner name required.}"
# A GitHub user or organization.
local repo="${2:?Repo name required.}"
# A GitHub repository.
#
# Keyword arguments
#
local _filter='.[] | "\(.name)\t\(.tag_name)\t\(.id)\t\(.html_url)"'
# A jq filter to apply to the return data.
shift 2
_opts_filter "$@"
_get "/repos/${owner}/${repo}/releases" \
| _filter_json "${_filter}"
}
release() {
# Get a release
#
# https://developer.github.com/v3/repos/releases/#get-a-single-release
#
# Usage:
#
# release user repo 1087855
#
# Positional arguments
#
local owner="${1:?Owner name required.}"
# A GitHub user or organization.
local repo="${2:?Repo name required.}"
# A GitHub repository.
local release_id="${3:?Release ID required.}"
# The unique ID of the release; see list_releases.
#
# Keyword arguments
#
local _filter='"\(.author.login)\t\(.published_at)"'
# A jq filter to apply to the return data.
shift 3
_opts_filter "$@"
_get "/repos/${owner}/${repo}/releases/${release_id}" \
| _filter_json "${_filter}"
}
create_release() {
# Create a release
#
# https://developer.github.com/v3/repos/releases/#create-a-release
#
# Usage:
#
# create_release org repo v1.2.3
# create_release user repo v3.2.1 draft=true
#
# Positional arguments
#
local owner="${1:?Owner name required.}"
# A GitHub user or organization.
local repo="${2:?Repo name required.}"
# A GitHub repository.
local tag_name="${3:?Tag name required.}"
# Git tag from which to create release.
#
# Keyword arguments
#
local _filter='"\(.name)\t\(.id)\t\(.html_url)"'
# A jq filter to apply to the return data.
#
# POST data may also be passed as keyword arguments:
#
# * `body`
# * `draft`
# * `name`
# * `prerelease`
# * `target_commitish`
shift 3
_opts_filter "$@"
_format_json "tag_name=${tag_name}" "$@" \
| _post "/repos/${owner}/${repo}/releases" \
| _filter_json "${_filter}"
}
edit_release() {
# Edit a release
#
# https://developer.github.com/v3/repos/releases/#edit-a-release
#
# Usage:
#
# edit_release org repo 1087855 name='Foo Bar 1.4.6'
# edit_release user repo 1087855 draft=false
#
# Positional arguments
#
local owner="${1:?Owner name required.}"
# A GitHub user or organization.
local repo="${2:?Repo name required.}"
# A GitHub repository.
local release_id="${3:?Release ID required.}"
# The unique ID of the release; see list_releases.
#
# Keyword arguments
#
local _filter='"\(.tag_name)\t\(.name)\t\(.html_url)"'
# A jq filter to apply to the return data.
#
# POST data may also be passed as keyword arguments:
#
# * `tag_name`
# * `body`
# * `draft`
# * `name`
# * `prerelease`
# * `target_commitish`
shift 3
_opts_filter "$@"
_format_json "$@" \
| _post "/repos/${owner}/${repo}/releases/${release_id}" method="PATCH" \
| _filter_json "${_filter}"
}
delete_release() {
# Delete a release
#
# https://developer.github.com/v3/repos/releases/#delete-a-release
#
# Usage:
#
# delete_release org repo 1087855
#
# Return: 0 for success; 1 for failure.
#
# Positional arguments
#
local owner="${1:?Owner name required.}"
# A GitHub user or organization.
local repo="${2:?Repo name required.}"
# A GitHub repository.
local release_id="${3:?Release ID required.}"
# The unique ID of the release; see list_releases.
shift 3
local confirm
_get_confirm 'This will permanently delete a release. Continue?'
[ "$confirm" -eq 1 ] || exit 0
_delete "/repos/${owner}/${repo}/releases/${release_id}"
exit $?
}
release_assets() {
# List release assets
#
# https://developer.github.com/v3/repos/releases/#list-assets-for-a-release
#
# Usage:
#
# release_assets user repo 1087855
#
# Example of downloading release assets:
#
# ok.sh release_assets <user> <repo> <release_id> \
# _filter='.[] | .browser_download_url' \
# | xargs -L1 curl -L -O
#
# Example of the multi-step process for grabbing the release ID for
# a specific version, then grabbing the release asset IDs, and then
# downloading all the release assets (whew!):
#
# username='myuser'
# repo='myrepo'
# release_tag='v1.2.3'
# ok.sh list_releases "$myuser" "$myrepo" \
# | awk -F'\t' -v tag="$release_tag" '$2 == tag { print $3 }' \
# | xargs -I{} ./ok.sh release_assets "$myuser" "$myrepo" {} \
# _filter='.[] | .browser_download_url' \
# | xargs -L1 curl -n -L -O
#
# Positional arguments
#
local owner="${1:?Owner name required.}"
# A GitHub user or organization.
local repo="${2:?Repo name required.}"
# A GitHub repository.
local release_id="${3:?Release ID required.}"
# The unique ID of the release; see list_releases.
#
# Keyword arguments
#
local _filter='.[] | "\(.id)\t\(.name)\t\(.updated_at)"'
# A jq filter to apply to the return data.
shift 3
_opts_filter "$@"
_get "/repos/${owner}/${repo}/releases/${release_id}/assets" \
| _filter_json "$_filter"
}
upload_asset() {
# Upload a release asset
#
# https://developer.github.com/v3/repos/releases/#upload-a-release-asset
#
# Usage:
#
# upload_asset https://<upload-url> /path/to/file.zip
#
# The upload URL can be gotten from `release()`. There are multiple steps
# required to upload a file: get the release ID, get the upload URL, parse
# the upload URL, then finally upload the file. For example:
#
# ```sh
# USER="someuser"
# REPO="somerepo"
# TAG="1.2.3"
# FILE_NAME="foo.zip"
# FILE_PATH="/path/to/foo.zip"
#
# # Create a release then upload a file:
# ok.sh create_release "$USER" "$REPO" "$TAG" _filter='.upload_url' \
# | sed 's/{.*$/?name='"$FILE_NAME"'/' \
# | xargs -I@ ok.sh upload_asset @ "$FILE_PATH"
#
# # Find a release by tag then upload a file:
# ok.sh list_releases "$USER" "$REPO" \
# | awk -v "tag=$TAG" -F'\t' '$2 == tag { print $3 }' \
# | xargs -I@ ok.sh release "$USER" "$REPO" @ _filter='.upload_url' \
# | sed 's/{.*$/?name='"$FILE_NAME"'/' \
# | xargs -I@ ok.sh upload_asset @ "$FILE_PATH"
# ```
#
# Positional arguments
#
local upload_url="${1:?upload_url is required.}"
# The _parsed_ upload_url returned from GitHub.
#
local file_path="${2:?file_path is required.}"
# A path to the file that should be uploaded.
#
# Keyword arguments
#
local _filter='"\(.state)\t\(.browser_download_url)"'
# A jq filter to apply to the return data.
#
# Also any other keyword arguments accepted by `_post()`.
shift 2
_opts_filter "$@"
_post "$upload_url" filename="$file_path" "$@" \
| _filter_json "$_filter"
}
# ### Issues
# Create, update, edit, delete, list issues and milestones.
list_milestones() {
# List milestones for a repository
#
# Usage:
#
# list_milestones someuser/somerepo
# list_milestones someuser/somerepo state=closed
#
# Positional arguments
#
local repository="${1:?Repo name required.}"
# A GitHub repository.
#
# Keyword arguments
#
local _follow_next
# Automatically look for a 'Links' header and follow any 'next' URLs.
local _follow_next_limit
# Maximum number of 'next' URLs to follow before stopping.
local _filter='.[] | "\(.number)\t\(.open_issues)/\(.closed_issues)\t\(.title)"'
# A jq filter to apply to the return data.
#
# GitHub querystring arguments may also be passed as keyword arguments:
#
# * `direction`
# * `per_page`
# * `sort`
# * `state`
shift 1
local qs
_opts_pagination "$@"
_opts_filter "$@"
_opts_qs "$@"
_get "/repos/${repository}/milestones${qs}" | _filter_json "$_filter"
}
create_milestone() {
# Create a milestone for a repository
#
# Usage:
#
# create_milestone someuser/somerepo MyMilestone
#
# create_milestone someuser/somerepo MyMilestone \
# due_on=2015-06-16T16:54:00Z \
# description='Long description here
# that spans multiple lines.'
#
# Positional arguments
#
local repo="${1:?Repo name required.}"
# A GitHub repository.
local title="${2:?Milestone name required.}"
# A unique title.
#
# Keyword arguments
#
local _filter='"\(.number)\t\(.html_url)"'
# A jq filter to apply to the return data.
#
# Milestone options may also be passed as keyword arguments:
#
# * `description`
# * `due_on`
# * `state`
shift 2
_opts_filter "$@"
_format_json title="$title" "$@" \
| _post "/repos/${repo}/milestones" \
| _filter_json "$_filter"
}
add_comment() {
# Add a comment to an issue
#
# Usage:
#
# add_comment someuser/somerepo 123 'This is a comment'
#
# Positional arguments
#
local repository="${1:?Repo name required}"
# A GitHub repository
local number="${2:?Issue number required}"
# Issue Number
local comment="${3:?Comment required}"
# Comment to be added
#
# Keyword arguments
#
local _filter='"\(.id)\t\(.html_url)"'
# A jq filter to apply to the return data.
shift 3
_opts_filter "$@"
_format_json body="$comment" \
| _post "/repos/${repository}/issues/${number}/comments" \
| _filter_json "${_filter}"
}
add_commit_comment() {
# Add a comment to a commit
#
# Usage:
#
# add_commit_comment someuser/somerepo 123 'This is a comment'
#
# Positional arguments
#
local repository="${1:?Repo name required}"
# A GitHub repository
local hash="${2:?Commit hash required}"
# Commit hash
local comment="${3:?Comment required}"
# Comment to be added
#
# Keyword arguments
#
local _filter='"\(.id)\t\(.html_url)"'
# A jq filter to apply to the return data.
shift 3
_opts_filter "$@"
_format_json body="$comment" \
| _post "/repos/${repository}/commits/${hash}/comments" \
| _filter_json "${_filter}"
}
close_issue() {
# Close an issue
#
# Usage:
#
# close_issue someuser/somerepo 123
#
# Positional arguments
#
local repository="${1:?Repo name required}"
# A GitHub repository
local number="${2:?Issue number required}"
# Issue Number
#
# Keyword arguments
#
local _filter='"\(.id)\t\(.state)\t\(.html_url)"'
# A jq filter to apply to the return data.
#
# POST data may also be passed as keyword arguments:
#
# * `assignee`
# * `labels`
# * `milestone`
shift 2
_opts_filter "$@"
_format_json state="closed" "$@" \
| _post "/repos/${repository}/issues/${number}" method='PATCH' \
| _filter_json "${_filter}"
}
list_issues() {
# List issues for the authenticated user or repository
#
# Usage:
#
# list_issues
# list_issues someuser/somerepo
# list_issues <any of the above> state=closed labels=foo,bar
#
# Positional arguments
#
# user or user/repository
#
# Keyword arguments
#
local _follow_next
# Automatically look for a 'Links' header and follow any 'next' URLs.
local _follow_next_limit
# Maximum number of 'next' URLs to follow before stopping.
local _filter='.[] | "\(.number)\t\(.title)"'
# A jq filter to apply to the return data.
#
# GitHub querystring arguments may also be passed as keyword arguments:
#
# * `assignee`
# * `creator`
# * `direction`
# * `labels`
# * `mentioned`
# * `milestone`
# * `per_page`
# * `since`
# * `sort`
# * `state`
local url
local qs
case $1 in
('') url='/user/issues' ;;
(*=*) url='/user/issues' ;;
(*/*) url="/repos/${1}/issues"; shift 1 ;;
esac
_opts_pagination "$@"
_opts_filter "$@"
_opts_qs "$@"
_get "${url}${qs}" | _filter_json "$_filter"
}
user_issues() {
# List all issues across owned and member repositories for the authenticated user
#
# Usage:
#
# user_issues
# user_issues since=2015-60-11T00:09:00Z
#
# Keyword arguments
#
local _follow_next
# Automatically look for a 'Links' header and follow any 'next' URLs.
local _follow_next_limit
# Maximum number of 'next' URLs to follow before stopping.
local _filter='.[] | "\(.repository.full_name)\t\(.number)\t\(.title)"'
# A jq filter to apply to the return data.
#
# GitHub querystring arguments may also be passed as keyword arguments:
#
# * `direction`
# * `filter`
# * `labels`
# * `per_page`
# * `since`
# * `sort`
# * `state`
local qs
_opts_pagination "$@"
_opts_filter "$@"
_opts_qs "$@"
_get "/issues${qs}" | _filter_json "$_filter"
}
create_issue() {
# Create an issue
#
# Usage:
#
# create_issue owner repo 'Issue title' body='Add multiline body
# content here' labels="$(./ok.sh _format_json -a foo bar)"
#
# Positional arguments
#
local owner="${1:?Owner name required.}"
# A GitHub repository.
local repo="${2:?Repo name required.}"
# A GitHub repository.
local title="${3:?Issue title required.}"
# A GitHub repository.
#
# Keyword arguments
#
local _filter='"\(.id)\t\(.number)\t\(.html_url)"'
# A jq filter to apply to the return data.
#
# Additional issue fields may be passed as keyword arguments:
#
# * `body` (string)
# * `assignee` (string)
# * `milestone` (integer)
# * `labels` (array of strings)
# * `assignees` (array of strings)
shift 3
_opts_filter "$@"
_format_json title="$title" "$@" \
| _post "/repos/${owner}/${repo}/issues" \
| _filter_json "$_filter"
}
org_issues() {
# List all issues for a given organization for the authenticated user
#
# Usage:
#
# org_issues someorg
#
# Positional arguments
#
local org="${1:?Organization name required.}"
# Organization GitHub login or id.
#
# Keyword arguments
#
local _follow_next
# Automatically look for a 'Links' header and follow any 'next' URLs.
local _follow_next_limit
# Maximum number of 'next' URLs to follow before stopping.
local _filter='.[] | "\(.number)\t\(.title)"'
# A jq filter to apply to the return data.
#
# GitHub querystring arguments may also be passed as keyword arguments:
#
# * `direction`
# * `filter`
# * `labels`
# * `per_page`
# * `since`
# * `sort`
# * `state`
shift 1
local qs
_opts_pagination "$@"
_opts_filter "$@"
_opts_qs "$@"
_get "/orgs/${org}/issues${qs}" | _filter_json "$_filter"
}
list_my_orgs() {
# List your organizations
#
# Usage:
#
# list_my_orgs
#
# Keyword arguments
#
local _follow_next
# Automatically look for a 'Links' header and follow any 'next' URLs.
local _follow_next_limit
# Maximum number of 'next' URLs to follow before stopping.
local _filter='.[] | "\(.login)\t\(.id)"'
# A jq filter to apply to the return data.
local qs
_opts_pagination "$@"
_opts_filter "$@"
_opts_qs "$@"
_get "/user/orgs" | _filter_json "$_filter"
}
list_orgs() {
# List all organizations
#
# Usage:
#
# list_orgs
#
# Keyword arguments
#
local _follow_next
# Automatically look for a 'Links' header and follow any 'next' URLs.
local _follow_next_limit
# Maximum number of 'next' URLs to follow before stopping.
local _filter='.[] | "\(.login)\t\(.id)"'
# A jq filter to apply to the return data.
local qs
_opts_pagination "$@"
_opts_filter "$@"
_opts_qs "$@"
_get "/organizations" | _filter_json "$_filter"
}
labels() {
# List available labels for a repository
#
# Usage:
#
# labels someuser/somerepo
#
# Positional arguments
#
local repo="$1"
# A GitHub repository.
#
# Keyword arguments
#
local _follow_next
# Automatically look for a 'Links' header and follow any 'next' URLs.
local _follow_next_limit
# Maximum number of 'next' URLs to follow before stopping.
local _filter='.[] | "\(.name)\t\(.color)"'
# A jq filter to apply to the return data.
_opts_pagination "$@"
_opts_filter "$@"
_get "/repos/${repo}/labels" | _filter_json "$_filter"
}
add_label() {
# Add a label to a repository
#
# Usage:
#
# add_label someuser/somerepo LabelName color
#
# Positional arguments
#
local repo="${1:?Repo name required.}"
# A GitHub repository.
local label="${2:?Label name required.}"
# A new label.
local color="${3:?Hex color required.}"
# A color, in hex, without the leading `#`.
#
# Keyword arguments
#
local _filter='"\(.name)\t\(.color)"'
# A jq filter to apply to the return data.
_opts_filter "$@"
_format_json name="$label" color="$color" \
| _post "/repos/${repo}/labels" \
| _filter_json "$_filter"
}
update_label() {
# Update a label
#
# Usage:
#
# update_label someuser/somerepo OldLabelName \
# label=NewLabel color=newcolor
#
# Positional arguments
#
local repo="${1:?Repo name required.}"
# A GitHub repository.
local label="${2:?Label name required.}"
# The name of the label which will be updated
#
# Keyword arguments
#
local _filter='"\(.name)\t\(.color)"'
# A jq filter to apply to the return data.
#
# Label options may also be passed as keyword arguments, these will update
# the existing values:
#
# * `color`
# * `name`
shift 2
_opts_filter "$@"
_format_json "$@" \
| _post "/repos/${repo}/labels/${label}" method='PATCH' \
| _filter_json "$_filter"
}
add_team_repo() {
# Add a team repository
#
# Usage:
#
# add_team_repo team_id organization repository_name permission
#
# Positional arguments
#
local team_id="${1:?Team id required.}"
# Team id to add repository to
local organization="${2:?Organization required.}"
# Organization to add repository to
local repository_name="${3:?Repository name required.}"
# Repository name to add
local permission="${4:?Permission required.}"
# Permission to grant: pull, push, admin
#
local url="/teams/${team_id}/repos/${organization}/${repository_name}"
export OK_SH_ACCEPT="application/vnd.github.ironman-preview+json"
_format_json "name=${name}" "permission=${permission}" | _post "$url" method='PUT' | _filter_json "${_filter}"
}
list_pulls() {
# Lists the pull requests for a repository
#
# Usage:
#
# list_pulls user repo
#
# Positional arguments
#
local owner="${1:?Owner required.}"
# A GitHub owner.
local repo="${2:?Repo name required.}"
# A GitHub repository.
#
# Keyword arguments
#
local _follow_next
# Automatically look for a 'Links' header and follow any 'next' URLs.
local _follow_next_limit
# Maximum number of 'next' URLs to follow before stopping.
local _filter='.[] | "\(.number)\t\(.user.login)\t\(.head.repo.clone_url)\t\(.head.ref)"'
# A jq filter to apply to the return data.
_opts_pagination "$@"
_opts_filter "$@"
_get "/repos/${owner}/${repo}/pulls" | _filter_json "$_filter"
}
create_pull_request() {
# Create a pull request for a repository
#
# Usage:
#
# create_pull_request someuser/somerepo title head base
#
# create_pull_request someuser/somerepo title head base body='Description here.'
#
# Positional arguments
#
local repo="${1:?Repo name required.}"
# A GitHub repository.
local title="${2:?Pull request title required.}"
# A title.
local head="${3:?Pull request head required.}"
# A head.
local base="${4:?Pull request base required.}"
# A base.
#
# Keyword arguments
#
local _filter='"\(.number)\t\(.html_url)"'
# A jq filter to apply to the return data.
#
# Pull request options may also be passed as keyword arguments:
#
# * `body`
# * `maintainer_can_modify`
shift 4
_opts_filter "$@"
_format_json title="$title" head="$head" base="$base" "$@" \
| _post "/repos/${repo}/pulls" \
| _filter_json "$_filter"
}
update_pull_request() {
# Update a pull request for a repository
#
# Usage:
#
# update_pull_request someuser/somerepo number title='New title' body='New body'
#
# Positional arguments
#
local repo="${1:?Repo name required.}"
# A GitHub repository.
local number="${2:?Pull request number required.}"
# A pull request number.
#
# Keyword arguments
#
local _filter='"\(.number)\t\(.html_url)"'
# A jq filter to apply to the return data.
#
# Pull request options may also be passed as keyword arguments:
#
# * `base`
# * `body`
# * `maintainer_can_modify`
# * `state` (either open or closed)
# * `title`
shift 2
_opts_filter "$@"
_format_json "$@" \
| _post "/repos/${repo}/pulls/${number}" method='PATCH' \
| _filter_json "$_filter"
}
transfer_repo() {
# Transfer a repository to a user or organization
#
# Usage:
#
# transfer_repo owner repo new_owner
# transfer_repo owner repo new_owner team_ids='[ 12, 345 ]'
#
# Positional arguments
#
local owner="${1:?Owner name required.}"
# Name of the current owner
#
local repo="${2:?Repo name required.}"
# Name of the current repo
#
local new_owner="${3:?New owner name required.}"
# Name of the new owner
#
# Keyword arguments
#
local _filter='"\(.name)"'
# A jq filter to apply to the return data.
#
# POST data may also be passed as keyword arguments:
#
# * `team_ids`
shift 3
_opts_filter "$@"
export OK_SH_ACCEPT='application/vnd.github.nightshade-preview+json'
_format_json "new_owner=${new_owner}" "$@" | _post "/repos/${owner}/${repo}/transfer" | _filter_json "${_filter}"
}
archive_repo() {
# Archive a repo
#
# Usage:
#
# archive_repo owner/repo
#
# Positional arguments
#
local repo="${1:?Repo name required.}"
# A GitHub repository.
#
local _filter='"\(.name)\t\(.html_url)"'
# A jq filter to apply to the return data.
#
shift 1
_opts_filter "$@"
_format_json "archived=true" \
| _post "/repos/${repo}" method='PATCH' \
| _filter_json "$_filter"
}
__main "$@"
|