Source file github_core.ml
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
let user_agent = "ocaml-github"
module Make(Env : Github_s.Env)(Time : Github_s.Time)(CL : Cohttp_lwt.S.Client)
= struct
let string_of_message message =
message.Github_t.message_message^
Github_t.(List.fold_left
(fun s { error_resource; error_field; error_code; error_message; } ->
let error_field = match error_field with
| None -> "\"\""
| Some x -> x
in
let error_message = match error_message with
| None -> "\"\""
| Some x -> x
in
Printf.sprintf
"%s\n> Resource type: %s\n Field: %s\n Code: %s\n Message: %s"
s error_resource error_field error_code error_message
)
"" message.Github_t.message_errors)
exception Message of Cohttp.Code.status_code * Github_t.message
let log_active = ref Env.debug
let () = Printexc.register_printer (function
| Message (code, message) ->
Some (Printf.sprintf "GitHub API error: %s -- %s"
(Cohttp.Code.string_of_status code) (string_of_message message))
| _ -> None
)
let log fmt =
Printf.ksprintf (fun s ->
match !log_active with
| false -> ()
| true -> prerr_endline (">>> GitHub: " ^ s)) fmt
type rate = Core | Search
type rates = {
core : Github_t.rate option;
search : Github_t.rate option;
}
let empty_rates = { core = None; search = None }
let rate_table : (string option,rates) Hashtbl.t = Hashtbl.create 4
module Response = struct
type redirect =
| Temporary of Uri.t
| Permanent of Uri.t
type 'a t = < value : 'a; redirects : redirect list >
let value r = r#value
let redirects r = r#redirects
let rec final_resource = function
| [] -> None
| (Permanent uri)::rest -> perm_resource uri rest
| (Temporary uri)::rest -> temp_resource uri rest
and perm_resource uri = function
| [] -> Some (Permanent uri)
| (Permanent uri)::rest -> perm_resource uri rest
| (Temporary uri)::rest -> temp_resource uri rest
and temp_resource uri = function
| [] -> Some (Temporary uri)
| (Temporary uri | Permanent uri)::rest -> temp_resource uri rest
let wrap : ?redirects:redirect list -> 'a -> 'a t =
fun ?(redirects=[]) v -> object
method value = v
method redirects = redirects
end
end
module Scope = struct
let to_string (x : Github_t.scope) = match x with
| `User -> "user"
| `User_email -> "user:email"
| `User_follow -> "user:follow"
| `Public_repo -> "public_repo"
| `Repo -> "repo"
| `Repo_deployment -> "repo_deployment"
| `Repo_status -> "repo:status"
| `Delete_repo -> "delete_repo"
| `Notifications -> "notifications"
| `Gist -> "gist"
| `Read_repo_hook -> "read:repo_hook"
| `Write_repo_hook -> "write:repo_hook"
| `Admin_repo_hook -> "admin:repo_hook"
| `Admin_org_hook -> "admin:org_hook"
| `Read_org -> "read:org"
| `Write_org -> "write:org"
| `Admin_org -> "admin:org"
| `Read_public_key -> "read:public_key"
| `Write_public_key -> "write:public_key"
| `Admin_public_key -> "admin:public_key"
| `Unknown cons -> "unknown:"^cons
let of_string x : Github_t.scope option =
match x with
| "user" -> Some `User
| "user_email" -> Some `User_email
| "user_follow" -> Some `User_follow
| "public_repo" -> Some `Public_repo
| "repo" -> Some `Repo
| "repo_deployment" -> Some `Repo_deployment
| "repo_status" -> Some `Repo_status
| "delete_repo" -> Some `Delete_repo
| "notifications" -> Some `Notifications
| "gist" -> Some `Gist
| "read:repo_hook" -> Some `Read_repo_hook
| "write:repo_hook" -> Some `Write_repo_hook
| "admin:repo_hook" -> Some `Admin_repo_hook
| "admin:org_hook" -> Some `Admin_org_hook
| "read:org" -> Some `Read_org
| "write:org" -> Some `Write_org
| "admin:org" -> Some `Admin_org
| "read:public_key" -> Some `Read_public_key
| "write:public_key" -> Some `Write_public_key
| "admin:public_key" -> Some `Admin_public_key
| _ -> None
let list_to_string scopes =
String.concat "," (List.map to_string scopes)
let list_of_string s =
let scopes = Stringext.split ~on:',' s in
List.fold_left (fun a b ->
match a, of_string b with
| None, _ -> None
| Some _, None -> None
| Some a, Some b -> Some (b::a)
) (Some []) scopes
let all = [
`User; `User_email; `User_follow;
`Public_repo; `Repo; `Repo_deployment; `Repo_status; `Delete_repo;
`Notifications; `Gist;
`Read_repo_hook; `Write_repo_hook; `Admin_repo_hook;
`Admin_org_hook; `Read_org; `Write_org; `Admin_org;
`Read_public_key; `Write_public_key; `Admin_public_key;
]
let max = [
`User; `Public_repo; `Repo; `Delete_repo; `Gist;
`Admin_repo_hook; `Admin_org; `Admin_org_hook; `Admin_public_key;
]
end
module URI = struct
let authorize ?scopes ?redirect_uri ~client_id ~state () =
let entry_uri = "https://github.com/login/oauth/authorize" in
let uri = Uri.of_string entry_uri in
let q = [ "client_id", client_id; "state", state ] in
let q = match scopes with
|Some scopes -> ("scope", Scope.list_to_string scopes) :: q
|None -> q in
let q = match redirect_uri with
|Some uri -> ("redirect_uri", Uri.to_string uri) :: q
|None -> q in
Uri.with_query' uri q
let token ~client_id ~client_secret ~code () =
let uri = Uri.of_string "https://github.com/login/oauth/access_token" in
let q = [ "client_id", client_id; "code", code; "client_secret", client_secret ] in
Uri.with_query' uri q
let api = "https://api.github.com"
let rate_limit =
Uri.of_string (Printf.sprintf "%s/rate_limit" api)
let authorizations =
Uri.of_string (Printf.sprintf "%s/authorizations" api)
let authorization ~id =
Uri.of_string (Printf.sprintf "%s/authorizations/%Ld" api id)
let user ?user () =
match user with
|None -> Uri.of_string (Printf.sprintf "%s/user" api)
|Some u -> Uri.of_string (Printf.sprintf "%s/users/%s" api u)
let user_repos ~user =
Uri.of_string (Printf.sprintf "%s/users/%s/repos" api user)
let repos =
Uri.of_string (Printf.sprintf "%s/user/repos" api)
let orgs =
Uri.of_string (Printf.sprintf "%s/user/orgs" api)
let repo ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s" api user repo)
let repo_forks ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/forks" api user repo)
let repo_issues ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/issues" api user repo)
let repo_issue ~user ~repo ~num =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/issues/%d" api user repo num)
let repo_tags ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/tags" api user repo)
let repo_tag ~user ~repo ~sha =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/git/tags/%s" api user repo sha)
let repo_branches ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/branches" api user repo)
let repo_refs ?ty ~user ~repo =
let suffix =
match ty with
|None -> ""
|Some ty -> "/"^ty
in
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/git/refs%s" api user repo suffix)
let repo_commit ~user ~repo ~sha =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/commits/%s" api user repo sha)
let repo_commit_status ~user ~repo ~git_ref =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/commits/%s/status" api user repo git_ref)
let repo_statuses ~user ~repo ~git_ref =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/statuses/%s" api user repo git_ref)
let repo_hooks ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/hooks" api user repo)
let repo_contributors ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/contributors" api user repo)
let repo_commit_activity ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/stats/commit_activity" api user repo)
let repo_contributors_stats ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/stats/contributors" api user repo)
let repo_code_frequency_stats ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/stats/code_frequency" api user repo)
let repo_participation_stats ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/stats/participation" api user repo)
let repo_code_hourly_stats ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/stats/punch_card" api user repo)
let repo_search =
Uri.of_string (Printf.sprintf "%s/search/repositories" api)
let repo_search_issues =
Uri.of_string (Printf.sprintf "%s/search/issues" api)
let repo_label ~user ~repo ~name =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/labels/%s" api user repo name)
let repo_labels ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/labels" api user repo)
let repo_collaborator ~user ~repo ~name =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/collaborators/%s" api user repo name)
let repo_collaborators ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/collaborators" api user repo)
let repo_hook ~user ~repo ~id =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/hooks/%Ld" api user repo id)
let repo_hook_test ~user ~repo ~id =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/hooks/%Ld/tests" api user repo id)
let repo_pulls ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/pulls" api user repo)
let pull ~user ~repo ~num =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/pulls/%d" api user repo num)
let _pull_diff_text ~user ~repo ~num =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/pull/%d.diff" api user repo num)
let pull_commits ~user ~repo ~num =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/pulls/%d/commits" api user repo num)
let pull_files ~user ~repo ~num =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/pulls/%d/files" api user repo num)
let pull_merge ~user ~repo ~num =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/pulls/%d/merge" api user repo num)
let repo_milestones ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/milestones" api user repo)
let milestone ~user ~repo ~num =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/milestones/%d" api user repo num)
let milestone_labels ~user ~repo ~num =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/milestones/%d/labels" api user repo num)
let ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/issues/comments" api user repo)
let ~user ~repo ~num =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/issues/%d/comments" api user repo num)
let ~user ~repo ~id =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/issues/comments/%Ld" api user repo id)
let issue_labels ~user ~repo ~num =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/issues/%d/labels" api user repo num)
let issue_label ~user ~repo ~num ~name =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/issues/%d/labels/%s" api user repo num name)
let repo_releases ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/releases" api user repo)
let repo_release ~user ~repo ~id =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/releases/%Ld" api user repo id)
let upload_release_asset ~user ~repo ~id =
Uri.of_string (
Printf.sprintf
"https://uploads.github.com/repos/%s/%s/releases/%Ld/assets"
user repo id)
let repo_deploy_keys ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/keys" api user repo)
let repo_deploy_key ~user ~repo ~id =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/keys/%Ld" api user repo id)
let repo_events ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/events" api user repo)
let repo_issues_events ~user ~repo =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/issues/events"
api user repo)
let repo_issue_events ~user ~repo ~num =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/issues/%d/events"
api user repo num)
let issue_timeline ~user ~repo ~num =
Uri.of_string (Printf.sprintf "%s/repos/%s/%s/issues/%d/timeline"
api user repo num)
let public_events = Uri.of_string (Printf.sprintf "%s/events" api)
let network_events ~user ~repo =
Uri.of_string (Printf.sprintf "%s/networks/%s/%s/events" api user repo)
let org_hooks ~org =
Uri.of_string (Printf.sprintf "%s/repos/%s/hooks" api org)
let org_hook ~org ~id =
Uri.of_string (Printf.sprintf "%s/repos/%s/hooks/%Ld" api org id)
let org_hook_test ~org ~id =
Uri.of_string (Printf.sprintf "%s/repos/%s/hooks/%Ld/tests" api org id)
let org_repos ~org =
Uri.of_string (Printf.sprintf "%s/orgs/%s/repos" api org)
let org_events ~org =
Uri.of_string (Printf.sprintf "%s/orgs/%s/events" api org)
let org_member_events ~user ~org =
Uri.of_string (Printf.sprintf "%s/users/%s/events/orgs/%s" api user org)
let received_events ~user =
Uri.of_string (Printf.sprintf "%s/users/%s/received_events" api user)
let public_received_events ~user =
Uri.of_string (Printf.sprintf "%s/users/%s/received_events/public"
api user)
let user_events ~user =
Uri.of_string (Printf.sprintf "%s/users/%s/events" api user)
let public_user_events ~user =
Uri.of_string (Printf.sprintf "%s/users/%s/events/public" api user)
let list_users_gists ~user =
Uri.of_string (Printf.sprintf "%s/users/%s/gists" api user)
let list_all_public_gists =
Uri.of_string (Printf.sprintf "%s/gists/public" api)
let list_starred_gists =
Uri.of_string (Printf.sprintf "%s/gists/starred" api)
let gists =
Uri.of_string (Printf.sprintf "%s/gists" api)
let gist ~id =
Uri.of_string (Printf.sprintf "%s/gists/%s" api id)
let gist_commits ~id =
Uri.of_string (Printf.sprintf "%s/gists/%s/commits" api id)
let gist_star ~id =
Uri.of_string (Printf.sprintf "%s/gists/%s/star" api id)
let gist_forks ~id =
Uri.of_string (Printf.sprintf "%s/gists/%s/forks" api id)
let team ~id =
Uri.of_string (Printf.sprintf "%s/teams/%Ld" api id)
let org_teams ~org =
Uri.of_string (Printf.sprintf "%s/orgs/%s/teams" api org)
let team_repos ~id =
Uri.of_string (Printf.sprintf "%s/teams/%Ld/repos" api id)
let user_orgs ~user =
Uri.of_string (Printf.sprintf "%s/users/%s/orgs" api user)
let emojis =
Uri.of_string (Printf.sprintf "%s/emojis" api)
end
module C = Cohttp
module CLB = Cohttp_lwt.Body
module Monad = struct
open Printf
open Lwt
type error =
| Generic of (C.Response.t * string)
| Semantic of C.Code.status_code * Github_t.message
| Bad_response of exn * [ `None | `Json of Yojson.Basic.t | `Raw of string ]
type request = {
meth: C.Code.meth; uri: Uri.t;
headers: C.Header.t; body: string;
}
type state = {
user_agent: string option;
token: string option
}
type 'a signal =
| Request of request * (request -> 'a signal Lwt.t)
| Response of 'a
| Err of error
type 'a t = state -> (state * 'a signal) Lwt.t
let string_of_message = string_of_message
let error_to_string = function
| Generic (res, body) ->
Lwt.return
(sprintf "HTTP Error %s\nHeaders:\n%s\nBody:\n%s\n"
(C.Code.string_of_status (C.Response.status res))
(String.concat "" (C.Header.to_lines (C.Response.headers res)))
body)
| Semantic (_,message) ->
Lwt.return ("GitHub API error: "^string_of_message message)
| Bad_response (exn,j) ->
Lwt.return (sprintf "Bad response: %s\n%s"
(Printexc.to_string exn)
(match j with
|`None -> "<none>"
|`Raw r -> sprintf "Raw body:\n%s" r
|`Json j -> sprintf "JSON body:\n%s" (Yojson.Basic.pretty_to_string j)))
let error err = Err err
let response r = Response r
let request ?token ?(params=[]) ({ uri; _ } as req) reqfn =
let uri = Uri.add_query_params' uri params in
Request ({req with uri}, reqfn)
let state =
let =
C.Header.prepend_user_agent
headers
(user_agent^" "^C.Header.user_agent)
in
let =
match state.user_agent with
| None -> headers
| Some ua -> C.Header.prepend_user_agent headers ua
in
match state.token with
| None -> headers
| Some token -> C.Header.add headers "Authorization" ("token " ^ token)
let prepare_request state ({ ; uri; _} as req) =
{ req with
headers=prepare_headers state headers;
}
let rec bind fn x = fun state -> x state >>= function
| state, Request (req, reqfn) ->
reqfn (prepare_request state req)
>>= fun r ->
bind fn (fun state -> Lwt.return (state, r)) state
| state, Response r -> fn r state
| state, ((Err _) as x) -> Lwt.return (state, x)
let return r = fun state -> Lwt.return (state, Response r)
let map f m = bind (fun x -> return (f x)) m
let with_error err = fun state -> Lwt.return (state, Err err)
let initial_state = {user_agent=None; token=None}
let run th = bind return th initial_state >>= function
| _, Request (_,_) -> Lwt.fail (Failure "Impossible: can't run unapplied request")
| _, Response r -> Lwt.return r
| _, Err (Semantic (status,msg)) -> Lwt.(fail (Message (status,msg)))
| _, Err e -> Lwt.(error_to_string e >>= fun err -> fail (Failure err))
let (>>=) m f = bind f m
let (>|=) m f = map f m
let (>>~) m f = m >|= Response.value >>= f
let embed lw =
Lwt.(fun state -> lw >>= (fun v -> return (state, Response v)))
let fail exn _state = Lwt.fail exn
let catch try_ with_ state =
Lwt.catch (fun () -> try_ () state) (fun exn -> with_ exn state)
end
module Endpoint = struct
module Version = struct
type t = Etag of string | Last_modified of string
let =
match C.Header.get headers "etag" with
| Some etag -> Some (Etag etag)
| None -> match C.Header.get headers "last-modified" with
| Some last -> Some (Last_modified last)
| None -> None
let = function
| None -> headers
| Some (Etag etag) ->
C.Header.add headers "If-None-Match" etag
| Some (Last_modified time) ->
C.Header.add headers "If-Modified-Since" time
end
type t = {
uri : Uri.t;
version : Version.t option;
}
let empty = { uri = Uri.empty; version = None; }
let poll_after : (string, float) Hashtbl.t = Hashtbl.create 8
let update_poll_after uri { ; _ } =
let now = Time.now () in
let poll_limit = match C.Header.get headers "x-poll-interval" with
| Some interval -> now +. (float_of_string interval)
| None -> now +. 60.
in
let uri_s = Uri.to_string uri in
let t_0 = try Hashtbl.find poll_after uri_s with Not_found -> 0. in
if t_0 < poll_limit then Hashtbl.replace poll_after uri_s poll_limit
let poll_result uri ({ ; _ } as envelope) =
let version = Version.of_headers headers in
update_poll_after uri envelope;
{ uri; version; }
let wait_to_poll uri =
let now = Time.now () in
let uri_s = Uri.to_string uri in
let t_1 = try Hashtbl.find poll_after uri_s with Not_found -> 0. in
Monad.embed begin
if now < t_1
then Time.sleep (t_1 -. now)
else Lwt.return_unit
end
end
module Stream = struct
type 'a t = {
restart : Endpoint.t -> 'a t option Monad.t;
buffer : 'a list;
refill : (unit -> 'a t Monad.t) option;
endpoint : Endpoint.t;
}
type 'a parse = string -> 'a list Lwt.t
let empty = {
restart = (fun _endpoint -> Monad.return None);
buffer = []; refill = None;
endpoint = Endpoint.empty;
}
let rec next = Monad.(function
| { buffer=[]; refill=None; _ } -> return None
| { buffer=[]; refill=Some refill; _ } -> refill () >>= next
| { buffer=h::buffer; _ } as s -> return (Some (h, { s with buffer }))
)
let map f s =
let rec refill s () = Monad.(
next s
>>= function
| None -> return empty
| Some (v,s) ->
f v
>>= function
| [] -> refill s ()
| buffer ->
return { s with restart; buffer; refill = Some (refill s) }
)
and restart endpoint = Monad.(
s.restart endpoint
>>= function
| Some s -> return (Some {
s with restart; buffer = []; refill = Some (refill s);
})
| None -> return None
) in
{
s with
restart;
buffer = [];
refill = Some (refill s);
}
let rec fold f a s = Monad.(
next s
>>= function
| None -> return a
| Some (v,s) ->
f a v
>>= fun a ->
fold f a s
)
let rec find p s = Monad.(
next s
>>= function
| None -> return None
| Some (n,s) as c -> if p n then return c else find p s
)
let rec iter f s = Monad.(
next s
>>= function
| None -> return ()
| Some (v,s) -> f v >>= fun () -> iter f s
)
let to_list s =
let rec aux lst s = Monad.(
next s
>>= function
| None -> return (List.rev lst)
| Some (v,s) -> aux (v::lst) s
) in
aux [] s
let of_list buffer = { empty with buffer; refill=None; }
let poll stream = stream.restart stream.endpoint
let since stream version =
{ stream with endpoint = {
stream.endpoint with Endpoint.version = Some version;
};
}
let version stream = stream.endpoint.Endpoint.version
end
type 'a authorization =
| Result of 'a
| Two_factor of string
type 'a parse = string -> 'a Lwt.t
type 'a handler = (C.Response.t * string -> bool) * 'a
module API = struct
let rec handle_response redirects (envelope,body as response) = Lwt.(
function
| (p, handler)::more ->
if not (p response) then handle_response redirects response more
else
let bad_response exn body = return (Monad.(error (Bad_response (exn,body)))) in
catch (fun () ->
handler response
>>= fun r ->
return (Monad.response (Response.wrap ~redirects r))
) (fun exn ->
catch (fun () ->
catch (fun () ->
let json = Yojson.Basic.from_string body in
log "response body:\n%s" (Yojson.Basic.pretty_to_string json);
bad_response exn (`Json json)
) (fun _exn -> bad_response exn (`Raw body))
) (fun _exn -> bad_response exn `None)
)
| [] ->
let status = C.Response.status envelope in
match status with
| `Unprocessable_entity | `Gone | `Unauthorized | `Forbidden ->
let message = Github_j.message_of_string body in
return Monad.(error (Semantic (status,message)))
| _ ->
return Monad.(error (Generic (envelope, body)))
)
let update_rate_table rate ?token response =
let = C.Response.headers response in
match C.Header.get headers "x-ratelimit-limit",
C.Header.get headers "x-ratelimit-remaining",
C.Header.get headers "x-ratelimit-reset"
with
| Some limit_s, Some remaining_s, Some reset_s ->
let v =
try Hashtbl.find rate_table token with Not_found -> empty_rates
in
let rate_limit = int_of_string limit_s in
let rate_remaining = int_of_string remaining_s in
let rate_reset = float_of_string reset_s in
let new_rate =
Some { Github_t.rate_limit; rate_remaining; rate_reset }
in
let new_rates = match rate with
| Core -> { v with core = new_rate }
| Search -> { v with search = new_rate }
in
Hashtbl.replace rate_table token new_rates
| _ -> ()
let lwt_req {Monad.uri; meth; ; body} =
log "Requesting %s" (Uri.to_string uri);
let body = CLB.of_string body in
CL.call ~headers ~body ~chunked:false meth uri
let max_redirects = 64
let make_redirect target = function
| `Moved_permanently -> Response.Permanent target
| _ -> Response.Temporary target
let rec request ?(redirects=[]) ~rate ~token resp_handlers req = Lwt.(
if List.length redirects > max_redirects
then Lwt.fail (Message (`Too_many_requests, Github_t.{
message_message = Printf.sprintf
"ocaml-github exceeded max redirects %d" max_redirects;
message_errors = [];
}))
else
lwt_req req
>>= fun (resp, body) ->
update_rate_table rate ?token resp;
let response_code = C.Response.status resp in
log "Response code %s\n%!" (C.Code.string_of_status response_code);
match response_code with
| `Found | `Temporary_redirect | `Moved_permanently -> begin
match C.Header.get (C.Response.headers resp) "location" with
| None -> Lwt.fail (Message (`Expectation_failed, Github_t.{
message_message = "ocaml-github got redirect without location";
message_errors = [];
}))
| Some location_s ->
let location = Uri.of_string location_s in
let target = Uri.resolve "" req.Monad.uri location in
let redirect = make_redirect target response_code in
let redirects = redirect::redirects in
let req = { req with Monad.uri = target } in
request ~redirects ~rate ~token resp_handlers req
end
| _ ->
CLB.to_string body >>= fun body ->
handle_response (List.rev redirects) (resp,body) resp_handlers
)
let code_handler ~expected_code handler =
(fun (res,_) -> C.Response.status res = expected_code), handler
let
~token
?(media_type="application/vnd.github.v3+json")
=
let = C.Header.add_opt headers "accept" media_type in
match token with
| None -> headers
| Some token -> C.Header.add headers "Authorization" ("token " ^ token)
let idempotent meth
?(rate=Core) ?media_type ? ?token ?params ~fail_handlers ~expected_code ~uri
fn =
fun state -> Lwt.return
(state,
(Monad.(request ?token ?params
{meth; uri; headers=realize_headers ~token ?media_type headers; body=""})
(request ~rate ~token
((code_handler ~expected_code fn)::fail_handlers))))
let just_body (_,(body:string)):string Lwt.t = Lwt.return body
let effectful meth
?(rate=Core) ? ?body ?token ?params
~fail_handlers ~expected_code ~uri fn =
let body = match body with None -> ""| Some b -> b in
let fn x = Lwt.(just_body x >>= fn) in
let fail_handlers = List.map (fun (p,fn) ->
p,Lwt.(fun x -> just_body x >>= fn)
) fail_handlers in
fun state -> Lwt.return
(state,
(Monad.(request ?token ?params
{meth; uri; headers=realize_headers ~token headers; body })
(request ~rate ~token
((code_handler ~expected_code fn)::fail_handlers))))
let map_fail_handlers f fhs = List.map (fun (p,fn) ->
p, f fn;
) fhs
let get ?rate
?(fail_handlers=[]) ?(expected_code=`OK) ?media_type ?
?token ?params ~uri fn =
let fail_handlers =
map_fail_handlers Lwt.(fun f x -> just_body x >>= f) fail_handlers
in
idempotent `GET ?rate ~fail_handlers ~expected_code
?media_type ?headers ?token ?params
~uri Lwt.(fun x -> just_body x >>= fn)
let rec next_link base = Cohttp.Link.(function
| { context; arc = { Arc.relation; _ }; target }::_
when Uri.(equal context empty) && List.mem Rel.next relation ->
Some (Uri.resolve "" base target)
| _::rest -> next_link base rest
| [] -> None
)
let stream_fail_handlers restart fhs =
map_fail_handlers Lwt.(fun f (envelope, body) ->
f body >>= fun buffer ->
return {
Stream.restart; buffer; refill=None; endpoint=Endpoint.empty;
}
) fhs
let rec stream_next restart request uri fn endpoint (envelope, body) = Lwt.(
let endpoint = match endpoint.Endpoint.version with
| None -> Endpoint.poll_result uri envelope
| Some _ -> endpoint
in
let refill = Some (fun () ->
let links = Cohttp.(Header.get_links envelope.Response.headers) in
match next_link uri links with
| None -> Monad.return Stream.empty
| Some uri -> request ~uri (stream_next restart request uri fn endpoint)
) in
fn body >>= fun buffer ->
return { Stream.restart; buffer; refill; endpoint }
)
let rec restart_stream
?rate ~fail_handlers ~expected_code ?media_type ? ?token
?params fn endpoint =
let restart = restart_stream
?rate ~fail_handlers ~expected_code ?headers ?token ?params fn
in
let first_request ~uri f =
let not_mod_handler =
code_handler ~expected_code:`Not_modified (fun (envelope,_) ->
Endpoint.update_poll_after uri envelope;
Lwt.return_none
)
in
let fail_handlers = stream_fail_handlers restart fail_handlers in
let fail_handlers = map_fail_handlers Lwt.(fun f response ->
f response >|= fun stream -> Some stream
) fail_handlers in
let fail_handlers = not_mod_handler::fail_handlers in
let f ((envelope, _) as response) = Lwt.(
let endpoint = Endpoint.poll_result uri envelope in
f response
>|= fun stream ->
Some { stream with Stream.endpoint }
) in
let = match headers with
| None -> C.Header.init ()
| Some h -> h
in
let =
Endpoint.(Version.add_conditional_headers headers endpoint.version)
in
Monad.(
Endpoint.wait_to_poll uri
>>= fun () ->
idempotent ?rate
`GET ?media_type ~headers ?token ?params ~fail_handlers
~expected_code ~uri f
)
in
let request ~uri f =
let fail_handlers = stream_fail_handlers restart fail_handlers in
Monad.map Response.value
(idempotent ?rate
`GET ?media_type ?headers ?token ?params ~fail_handlers
~expected_code ~uri f)
in
let uri = endpoint.Endpoint.uri in
Monad.map Response.value
(first_request ~uri (stream_next restart request uri fn endpoint))
let get_stream (type a)
?rate
?(fail_handlers:a Stream.parse handler list=[])
?(expected_code:Cohttp.Code.status_code=`OK)
?media_type
?(:Cohttp.Header.t option) ?(token:string option)
?(params:(string * string) list option)
~(uri:Uri.t) (fn : a Stream.parse) =
let restart = restart_stream
?rate ~fail_handlers ~expected_code ?headers ?token ?params fn
in
let request ~uri f =
let fail_handlers = stream_fail_handlers restart fail_handlers in
Monad.map Response.value
(idempotent ?rate
`GET ?media_type ?headers ?token ?params ~fail_handlers
~expected_code ~uri f)
in
let endpoint = Endpoint.({ empty with uri }) in
let refill = Some (fun () ->
request ~uri (stream_next restart request uri fn endpoint)
) in
{
Stream.restart;
buffer = [];
refill;
endpoint;
}
let post ?rate ?(fail_handlers=[]) ~expected_code =
effectful `POST ?rate ~fail_handlers ~expected_code
let patch ?rate ?(fail_handlers=[]) ~expected_code =
effectful `PATCH ?rate ~fail_handlers ~expected_code
let put ?rate ?(fail_handlers=[]) ~expected_code ? ?body =
let = match headers, body with
| None, None -> Some (C.Header.init_with "content-length" "0")
| Some h, None -> Some (C.Header.add h "content-length" "0")
| _, Some _ -> headers
in
effectful `PUT ?rate ~fail_handlers ~expected_code ?headers ?body
let delete ?rate
?(fail_handlers=[]) ?(expected_code=`No_content) ? ?token ?params
~uri fn =
let fail_handlers =
map_fail_handlers Lwt.(fun f x -> just_body x >>= f) fail_handlers
in
idempotent `DELETE ?rate
~fail_handlers ~expected_code ?headers ?token ?params
~uri Lwt.(fun x -> just_body x >>= fn)
let set_user_agent user_agent = fun state ->
Monad.(Lwt.return ({state with user_agent=Some user_agent}, Response ()))
let set_token token = fun state ->
Monad.(Lwt.return ({state with token=Some token}, Response ()))
let rates_of_resources rate_limit_resources = {
core = Some rate_limit_resources.Github_t.rate_resources_core;
search = Some rate_limit_resources.Github_t.rate_resources_search;
}
let request_rate_limit ?token () = Monad.(
let uri = URI.rate_limit in
get ?token ~uri (fun b -> Lwt.return (Github_j.rate_limit_of_string b))
>>~ fun { Github_t.rate_limit_resources } ->
let rates = rates_of_resources rate_limit_resources in
Hashtbl.replace rate_table token rates;
return rate_limit_resources
)
let cached_rates ?token () =
try Monad.return (Hashtbl.find rate_table token)
with Not_found ->
Monad.map rates_of_resources (request_rate_limit ?token ())
let get_rate ?(rate=Core) ?token () = Monad.(
cached_rates ?token ()
>>= fun rates ->
let rec get_core_rate = function
| { core = None; _ } ->
Monad.map rates_of_resources (request_rate_limit ?token ())
>>= get_core_rate
| { core = Some rate; _ } -> return rate
in
let rec get_search_rate = function
| { search = None; _ } ->
Monad.map rates_of_resources (request_rate_limit ?token ())
>>= get_search_rate
| { search = Some rate; _ } -> return rate
in
match rate with
| Core -> get_core_rate rates
| Search -> get_search_rate rates
)
let get_rate_limit ?token () = Monad.(
get_rate ?token ()
>>= fun { Github_t.rate_limit; _ } -> return rate_limit
)
let get_rate_remaining ?token () = Monad.(
get_rate ?token ()
>>= fun { Github_t.rate_remaining; _ } -> return rate_remaining
)
let get_rate_reset ?token () = Monad.(
get_rate ?token ()
>>= fun { Github_t.rate_reset; _ } -> return rate_reset
)
let string_of_message = Monad.string_of_message
end
open Github_j
module Rate_limit = struct
open Monad
let all ?token () = API.request_rate_limit ?token ()
let for_core ?token () =
all ?token ()
>>= fun { rate_resources_core; _ } -> return rate_resources_core
let for_search ?token () =
all ?token ()
>>= fun { rate_resources_search; _ } -> return rate_resources_search
end
module Token = struct
open Lwt
type t = string
let two_factor_auth_handler () =
let mode = ref "" in
(fun (res,_) ->
C.Response.status res = `Unauthorized
&&
match C.Header.get (C.Response.headers res) "x-github-otp" with
| None -> false
| Some v ->
let required = String.sub v 0 10 in
if required = "required; "
then (mode := (Stringext.string_after v 10); true)
else false
), (fun _ -> return (Two_factor !mode))
let add_otp = function
| None -> headers
| Some code -> C.Header.replace headers "x-github-otp" code
let create ?(scopes=[`Repo]) ?(note="ocaml-github") ?note_url ?client_id
?client_secret ?fingerprint ?otp ~user ~pass () =
let req = {
auth_req_scopes=scopes; auth_req_note=note; auth_req_note_url=note_url;
auth_req_fingerprint=fingerprint;
auth_req_client_id=client_id; auth_req_client_secret=client_secret;
} in
let body = string_of_auth_req req in
let =
add_otp C.Header.(add_authorization (init ()) (`Basic (user,pass))) otp
in
let uri = URI.authorizations in
let fail_handlers = [two_factor_auth_handler ()] in
API.post ~headers ~body ~uri ~fail_handlers ~expected_code:`Created
(fun body -> return (Result (auth_of_string body)))
let get_all ?otp ~user ~pass () =
let uri = URI.authorizations in
let =
add_otp C.Header.(add_authorization (init ()) (`Basic (user,pass))) otp
in
let fail_handlers = [two_factor_auth_handler ()] in
API.get ~headers ~uri ~fail_handlers ~expected_code:`OK (fun body ->
return (Result (auths_of_string body))
)
let get ?otp ~user ~pass ~id () =
let uri = URI.authorization ~id in
let =
add_otp C.Header.(add_authorization (init ()) (`Basic (user,pass))) otp
in
let fail_handlers = [
two_factor_auth_handler ();
API.code_handler ~expected_code:`Not_found
(fun _ -> return (Result None));
] in
API.get ~headers ~uri ~fail_handlers ~expected_code:`OK (fun body ->
return (Result (Some (auth_of_string body)))
)
let delete ?otp ~user ~pass ~id () =
let uri = URI.authorization ~id in
let =
add_otp C.Header.(add_authorization (init ()) (`Basic (user,pass))) otp
in
let fail_handlers = [two_factor_auth_handler ()] in
API.delete ~headers ~uri ~fail_handlers ~expected_code:`No_content
(fun _body -> return (Result ()))
let of_code ~client_id ~client_secret ~code () =
let uri = URI.token ~client_id ~client_secret ~code () in
CL.post uri
>>= fun (_res, body) ->
CLB.to_string body
>>= fun body ->
try
let form = Uri.query_of_encoded body in
return (Some (List.(hd (assoc "access_token" form))))
with _ ->
return None
let of_auth x = x.auth_token
let of_string x = x
let to_string x = x
end
module User = struct
open Lwt
let current_info ?token () =
let uri = URI.user () in
API.get ?token ~uri (fun body -> return (user_info_of_string body))
let info ?token ~user () =
let uri = URI.user ~user () in
API.get ?token ~uri (fun body -> return (user_info_of_string body))
let repositories ?token ~user () =
let uri = URI.user_repos ~user in
API.get_stream ?token ~uri (fun b ->
return (repositories_of_string b)
)
end
module Organization = struct
module Hook = struct
open Lwt
let for_org ?token ~org () =
let uri = URI.org_hooks ~org in
API.get_stream ?token ~uri (fun b -> return (hooks_of_string b))
let get ?token ~org ~id () =
let uri = URI.org_hook ~org ~id in
API.get ?token ~uri (fun b -> return (hook_of_string b))
let create ?token ~org ~hook () =
let uri = URI.org_hooks ~org in
let body = string_of_new_hook hook in
API.post ~body ?token ~uri ~expected_code:`Created
(fun b -> return (hook_of_string b))
let update ?token ~org ~id ~hook () =
let uri = URI.org_hook ~org ~id in
let body = string_of_update_hook hook in
API.patch ?token ~body ~uri ~expected_code:`OK
(fun b -> return (hook_of_string b))
let delete ?token ~org ~id () =
let uri = URI.org_hook ~org ~id in
API.delete ?token ~uri (fun _ -> return ())
let test ?token ~org ~id () =
let uri = URI.org_hook_test ~org ~id in
API.post ?token ~uri ~expected_code:`No_content (fun _b -> return ())
let parse_event ~constr ~payload () : Github_t.event_hook_constr =
let parse_json = function
| "" -> None
| s -> Some (Yojson.Safe.from_string s)
in
match Github_j.event_type_of_string ("\"" ^ constr ^ "\"") with
| `CommitComment ->
`CommitComment (Github_j.commit_comment_event_of_string payload)
| `Create ->
`Create (Github_j.create_event_of_string payload)
| `Delete ->
`Delete (Github_j.delete_event_of_string payload)
| `Deployment ->
`Unknown ("deployment", parse_json payload)
| `DeploymentStatus ->
`Unknown ("deployment_status", parse_json payload)
| `Download -> `Download
| `Follow -> `Follow
| `Fork ->
`Fork (Github_j.fork_event_of_string payload)
| `ForkApply -> `ForkApply
| `Gist -> `Gist
| `Gollum ->
`Gollum (Github_j.gollum_event_of_string payload)
| `IssueComment ->
`IssueComment (Github_j.issue_comment_event_of_string payload)
| `Issues ->
`Issues (Github_j.issues_event_of_string payload)
| `Member ->
`Member (Github_j.member_event_of_string payload)
| `PageBuild ->
`Unknown ("page_build", parse_json payload)
| `Public -> `Public
| `PullRequest ->
`PullRequest (Github_j.pull_request_event_of_string payload)
| `PullRequestReviewComment ->
`PullRequestReviewComment
(Github_j.pull_request_review_comment_event_of_string payload)
| `Push ->
`Push (Github_j.push_event_hook_of_string payload)
| `Release ->
`Release (Github_j.release_event_of_string payload)
| `Repository ->
`Repository (Github_j.repository_event_of_string payload)
| `Status ->
`Status (Github_j.status_event_of_string payload)
| `TeamAdd ->
`Unknown ("team_add", parse_json payload)
| `Watch ->
`Watch (Github_j.watch_event_of_string payload)
| `All -> `Unknown ("*", parse_json payload)
| `Unknown cons -> `Unknown (cons, parse_json payload)
let parse_event_metadata ~payload () =
Github_j.event_hook_metadata_of_string payload
end
open Lwt
let teams ?token ~org () =
let uri = URI.org_teams ~org in
API.get_stream ?token ~uri (fun b -> return (teams_of_string b))
let user_orgs ?token ~user () =
let uri = URI.user_orgs ~user in
API.get_stream ?token ~uri (fun b -> return (orgs_of_string b))
let current_user_orgs ?token () =
let uri = URI.orgs in
API.get_stream ?token ~uri (fun b -> return (orgs_of_string b))
let repositories ?token ~org () =
let uri = URI.org_repos ~org in
API.get_stream ?token ~uri (fun b ->
return (repositories_of_string b)
)
end
module Team = struct
open Lwt
let info ?token ~id () =
let uri = URI.team ~id in
API.get ?token ~uri (fun b -> return (team_info_of_string b))
let repositories ?token ~id () =
let uri = URI.team_repos ~id in
API.get_stream ?token ~uri (fun b -> return (repositories_of_string b))
end
module Filter = struct
type state = [ `All | `Open | `Closed ]
let string_of_state (s:state) =
match s with
|`All -> "all"
|`Open -> "open"
|`Closed -> "closed"
type milestone_sort = [ `Due_date | `Completeness ]
let string_of_sort (s:milestone_sort) =
match s with
|`Due_date -> "due_date"
|`Completeness -> "completeness"
type issue_sort = [ `Created | `Updated | `Comments ]
let string_of_issue_sort (s:issue_sort) =
match s with
|`Created -> "created"
|`Updated -> "updated"
|`Comments -> "comments"
let (s:issue_comment_sort) =
match s with
|`Created -> "created"
|`Updated -> "updated"
type issue_type = [ `Pr | `Issue ]
let string_of_issue_type (s:issue_type) =
match s with
|`Pr -> "pr"
|`Issue -> "issue"
type repo_sort = [ `Stars | `Forks | `Updated ]
let string_of_repo_sort (s:repo_sort) =
match s with
|`Stars -> "stars"
|`Forks -> "forks"
|`Updated -> "updated"
type forks_sort = [ `Newest | `Oldest | `Stargazers ]
let string_of_forks_sort (s:forks_sort) =
match s with
|`Newest -> "newest"
|`Oldest -> "oldest"
|`Stargazers -> "stargazers"
type direction = [ `Asc | `Desc ]
let string_of_direction (d:direction) =
match d with
|`Asc -> "asc"
|`Desc -> "desc"
type milestone = [ `Any | `None | `Num of int ]
let string_of_milestone (m:milestone) =
match m with
|`Any -> "*"
|`None -> "none"
|`Num n -> string_of_int n
type user = [ `Any | `None | `Login of string ]
let string_of_user (a:user) =
match a with
|`Any -> "*"
|`None -> "none"
|`Login u -> u
type 'a range = [
| `Range of 'a option * 'a option
| `Lt of 'a
| `Lte of 'a
| `Eq of 'a
| `Gte of 'a
| `Gt of 'a
]
let string_of_range str_fn (r:'a range) =
match r with
|`Range (None,None) -> "*..*"
|`Range (Some l,None) -> (str_fn l)^"..*"
|`Range (None,Some u) -> "*.."^(str_fn u)
|`Range (Some l,Some u) -> (str_fn l)^".."^(str_fn u)
|`Lt k -> "<"^(str_fn k)
|`Lte k -> "<="^(str_fn k)
|`Eq k -> str_fn k
|`Gte k -> ">="^(str_fn k)
|`Gt k -> ">"^(str_fn k)
type repo_field = [
| `Name
| `Description
| `Readme
]
let string_of_repo_field = function
|`Name -> "name"
|`Description -> "description"
|`Readme -> "readme"
type date = string
type issue_qualifier = [
| `Author of string
| `Assignee of string
| `Mentions of string
| `Commenter of string
| `Involves of string
| `Team of string
| `Label of string
| `Without_label of string
| `Language of string
| `Created of date range
| `Updated of date range
| `Merged of date range
| `Closed of date range
| `User of string
| `Repo of string
| `Project of string
]
let string_of_issue_qualifier (x:issue_qualifier) =
match x with
| `Author a -> "author:"^a
| `Assignee a -> "assignee:"^a
| `Mentions a -> "mentions:"^a
| `Commenter a -> "commenter:"^a
| `Involves a -> "involves:"^a
| `Team t -> "team:"^t
| `Label l -> "label:"^l
| `Without_label l -> "-label:"^l
| `Language l -> "language:"^l
| `Created r -> "created:"^(string_of_range (fun x -> x) r)
| `Updated r -> "updated:"^(string_of_range (fun x -> x) r)
| `Merged r -> "merged:"^(string_of_range (fun x -> x) r)
| `Closed r -> "closed:"^(string_of_range (fun x -> x) r)
| `User u -> "user:"^u
| `Repo r -> "repo:"^r
| `Project p -> "project:"^p
type qualifier = [
| `In of repo_field list
| `Size of int range
| `Stars of int range
| `Forks of int range
| `Fork of [ `True | `Only ]
| `Created of date range
| `Pushed of date range
| `User of string
| `Language of string
]
let string_of_qualifier: qualifier -> string = function
|`In fields ->
"in:"^(String.concat "," (List.map string_of_repo_field fields))
|`Size r -> "size:" ^(string_of_range string_of_int r)
|`Stars r -> "stars:"^(string_of_range string_of_int r)
|`Forks r -> "forks:"^(string_of_range string_of_int r)
|`Fork `True -> "fork:true"
|`Fork `Only -> "fork:only"
|`Created r -> "created:"^(string_of_range (fun x -> x) r)
|`Pushed r -> "pushed:" ^(string_of_range (fun x -> x) r)
|`User u -> "user:"^u
|`Language l -> "language:"^l
end
module Pull = struct
open Lwt
let for_repo ?token ?(state=`Open) ~user ~repo () =
let params = Filter.([
"state", string_of_state state;
]) in
API.get_stream ?token ~params ~uri:(URI.repo_pulls ~user ~repo)
(fun b -> return (pulls_of_string b))
let get ?token ~user ~repo ~num () =
let uri = URI.pull ~user ~repo ~num in
API.get ?token ~uri (fun b -> return (pull_of_string b))
let create ?token ~user ~repo ~pull () =
let uri = URI.repo_pulls ~user ~repo in
let body = string_of_new_pull pull in
API.post ?token ~body ~uri ~expected_code:`Created (fun b -> return (pull_of_string b))
let create_from_issue ?token ~user ~repo ~pull_issue () =
let uri = URI.repo_pulls ~user ~repo in
let body = string_of_new_pull_issue pull_issue in
API.post ?token ~body ~uri ~expected_code:`Created (fun b -> return (pull_of_string b))
let update ?token ~user ~repo ~update_pull ~num () =
let uri = URI.pull ~user ~repo ~num in
let body = string_of_update_pull update_pull in
API.patch ?token ~body ~uri ~expected_code:`OK (fun b -> return (pull_of_string b))
let commits ?token ~user ~repo ~num () =
let uri = URI.pull_commits ~user ~repo ~num in
API.get_stream ?token ~uri (fun b -> return (commits_of_string b))
let files ?token ~user ~repo ~num () =
let uri = URI.pull_files ~user ~repo ~num in
API.get_stream ?token ~uri (fun b -> return (files_of_string b))
let is_merged ?token ~user ~repo ~num () =
let uri = URI.pull_merge ~user ~repo ~num in
let fail_handlers = [
API.code_handler ~expected_code:`Not_found (fun _ -> return false);
] in
API.get ?token ~uri ~expected_code:`No_content ~fail_handlers
(fun _ -> return true)
let merge ?token ~user ~repo ~num ?merge_commit_message () =
let uri = URI.pull_merge ~user ~repo ~num in
let body = string_of_merge_request {merge_commit_message} in
API.put ?token ~body ~uri ~expected_code:`OK (fun b -> return (merge_of_string b))
end
module Milestone = struct
open Lwt
let for_repo ?token ?(state=`Open) ?(sort=`Due_date) ?(direction=`Desc)
~user ~repo () =
let params = Filter.([
"direction", string_of_direction direction;
"sort", string_of_sort sort;
"state", string_of_state state ]) in
API.get_stream ?token ~params ~uri:(URI.repo_milestones ~user ~repo)
(fun b -> return (milestones_of_string b))
let get ?token ~user ~repo ~num () =
let uri = URI.milestone ~user ~repo ~num in
API.get ?token ~uri (fun b -> return (milestone_of_string b))
let delete ?token ~user ~repo ~num () =
let uri = URI.milestone ~user ~repo ~num in
API.delete ?token ~uri (fun _ -> return ())
let create ?token ~user ~repo ~milestone () =
let uri = URI.repo_milestones ~user ~repo in
let body = string_of_new_milestone milestone in
API.post ?token ~body ~uri ~expected_code:`Created (fun b -> return (milestone_of_string b))
let update ?token ~user ~repo ~milestone ~num () =
let uri = URI.milestone ~user ~repo ~num in
let body = string_of_update_milestone milestone in
API.patch ?token ~body ~uri ~expected_code:`OK (fun b -> return (milestone_of_string b))
let labels ?token ~user ~repo ~num () =
let uri = URI.milestone_labels ~user ~repo ~num in
API.get_stream ?token ~uri (fun b -> return (labels_of_string b))
end
module Release = struct
open Lwt
let for_repo ?token ~user ~repo () =
API.get_stream ?token ~uri:(URI.repo_releases ~user ~repo)
(fun b -> return (releases_of_string b))
let get ?token ~user ~repo ~id () =
let uri = URI.repo_release ~user ~repo ~id in
API.get ?token ~uri (fun b -> return (release_of_string b))
(** We need to stream down releases until we find the target *)
let get_by_tag_name ?token ~user ~repo ~tag () =
let open Monad in
let releases = for_repo ?token ~user ~repo () in
Stream.find (fun r -> r.release_tag_name = tag) releases
>>= function
| Some (r,_) -> return r
| None ->
let msg =
Printf.sprintf "tag %s not found in repository %s/%s" tag user repo
in
let msg = {Github_t.message_message=msg; message_errors=[]} in
with_error (Semantic (`Not_found,msg))
let delete ?token ~user ~repo ~id () =
let uri = URI.repo_release ~user ~repo ~id in
API.delete ?token ~uri (fun _ -> return ())
let create ?token ~user ~repo ~release () =
let uri = URI.repo_releases ~user ~repo in
let body = string_of_new_release release in
API.post ?token ~body ~uri ~expected_code:`Created (fun b -> return (release_of_string b))
let update ?token ~user ~repo ~release ~id () =
let uri = URI.repo_release ~user ~repo ~id in
let body = string_of_update_release release in
API.patch ?token ~body ~uri ~expected_code:`OK (fun b -> return (release_of_string b))
let upload_asset ?token ~user ~repo ~id ~filename ~content_type ~body () =
let = Cohttp.Header.init_with "content-type" content_type in
let params = ["name", filename] in
let uri = URI.upload_release_asset ~user ~repo ~id in
API.post ?token ~params ~headers ~body ~uri ~expected_code:`Created
(fun _b -> return ())
end
module Deploy_key = struct
open Lwt
let for_repo ?token ~user ~repo () =
API.get_stream ?token ~uri:(URI.repo_deploy_keys ~user ~repo)
(fun b -> return (deploy_keys_of_string b))
let get ?token ~user ~repo ~id () =
let uri = URI.repo_deploy_key ~user ~repo ~id in
API.get ?token ~uri (fun b -> return (deploy_key_of_string b))
let delete ?token ~user ~repo ~id () =
let uri = URI.repo_deploy_key ~user ~repo ~id in
API.delete ?token ~uri (fun _ -> return ())
let create ?token ~user ~repo ~new_key () =
let uri = URI.repo_deploy_keys ~user ~repo in
let body = string_of_new_deploy_key new_key in
API.post ?token ~body ~uri ~expected_code:`Created (fun b -> return (deploy_key_of_string b))
end
module Issue = struct
open Lwt
let for_repo ?token ?creator ?mentioned ?assignee
?labels ?milestone ?state ?(sort=`Created)
?(direction=`Desc) ~user ~repo () =
let params = Filter.([
"direction", string_of_direction direction;
"sort", string_of_issue_sort sort;
]) in
let params = match state with
| None -> params
| Some s -> ("state", Filter.string_of_state s)::params
in
let params = match milestone with
| None -> params
| Some m -> ("milestone", Filter.string_of_milestone m)::params
in
let params = match assignee with
| None -> params
| Some a -> ("assignee", Filter.string_of_user a)::params
in
let params = match creator with
| None -> params
| Some c -> ("creator", c)::params
in
let params = match mentioned with
| None -> params
| Some m -> ("mentioned", m)::params
in
let params = match labels with
| None -> params
| Some l -> ("labels",String.concat "," l)::params
in
let uri = URI.repo_issues ~user ~repo in
API.get_stream ?token ~params ~uri (fun b -> return (issues_of_string b))
let get ?token ~user ~repo ~num () =
let uri = URI.repo_issue ~user ~repo ~num in
API.get ?token ~uri (fun b -> return (issue_of_string b))
let create ?token ~user ~repo ~issue () =
let body = string_of_new_issue issue in
let uri = URI.repo_issues ~user ~repo in
API.post ~body ?token ~uri ~expected_code:`Created (fun b -> return (issue_of_string b))
let update ?token ~user ~repo ~num ~issue () =
let body = string_of_update_issue issue in
let uri = URI.repo_issue ~user ~repo ~num in
API.patch ~body ?token ~uri ~expected_code:`OK
(fun b -> return (issue_of_string b))
let events_for_repo ?token ~user ~repo () =
let uri = URI.repo_issues_events ~user ~repo in
API.get_stream ?token ~uri (fun b -> return (repo_issues_events_of_string b))
let events ?token ~user ~repo ~num () =
let uri = URI.repo_issue_events ~user ~repo ~num in
API.get_stream ?token ~uri (fun b -> return (repo_issue_events_of_string b))
let timeline_events ?token ~user ~repo ~num () =
let uri = URI.issue_timeline ~user ~repo ~num in
API.get_stream ?token ~uri ~media_type:"application/vnd.github.mockingbird-preview"
(fun b -> return (timeline_events_of_string b))
let ?token ?since ~user ~repo ~num () =
let params = match since with
| None -> []
| Some s -> ["since", s]
in
let uri = URI.issue_comments ~user ~repo ~num in
API.get_stream ?token ~params ~uri (fun b -> return (issue_comments_of_string b))
let ?token ?sort ?direction ?since ~user ~repo () =
let params = [] in
let params = match sort with
| None -> params
| Some s -> ("sort", Filter.string_of_issue_comment_sort s)::params
in
let params = match direction with
| None -> params
| Some d -> ("direction", Filter.string_of_direction d)::params
in
let params = match since with
| None -> params
| Some s -> ("since", s)::params
in
let uri = URI.issues_comments ~user ~repo in
API.get_stream ?token ~params ~uri (fun b -> return (issue_comments_of_string b))
let ?token ~user ~repo ~num ~body () =
let body = string_of_new_issue_comment { new_issue_comment_body=body } in
let uri = URI.issue_comments ~user ~repo ~num in
API.post ~body ?token ~uri ~expected_code:`Created (fun b -> return (issue_comment_of_string b))
let ?token ~user ~repo ~id () =
let uri = URI.issue_comment ~user ~repo ~id in
API.get ?token ~uri (fun b -> return (issue_comment_of_string b))
let ?token ~user ~repo ~id ~body () =
let body = string_of_new_issue_comment { new_issue_comment_body=body } in
let uri = URI.issue_comment ~user ~repo ~id in
API.patch ?token ~body ~uri ~expected_code:`OK (fun b -> return (issue_comment_of_string b))
let ?token ~user ~repo ~id () =
let uri = URI.issue_comment ~user ~repo ~id in
API.delete ?token ~uri ~expected_code:`No_content (fun _ -> return ())
let labels ?token ~user ~repo ~num () =
let uri = URI.issue_labels ~user ~repo ~num in
API.get_stream ?token ~uri (fun b -> return (labels_of_string b))
let add_labels ?token ~user ~repo ~num ~labels () =
let body = string_of_label_names labels in
let uri = URI.issue_labels ~user ~repo ~num in
API.post ?token ~body ~uri ~expected_code:`OK (fun b -> return (labels_of_string b))
let remove_label ?token ~user ~repo ~num ~name () =
let uri = URI.issue_label ~user ~repo ~num ~name in
API.delete ?token ~uri ~expected_code:`OK (fun b -> return (labels_of_string b))
let replace_labels ?token ~user ~repo ~num ~labels () =
let body = string_of_label_names labels in
let uri = URI.issue_labels ~user ~repo ~num in
API.put ?token ~body ~uri ~expected_code:`OK (fun b -> return (labels_of_string b))
let remove_labels ?token ~user ~repo ~num () =
let uri = URI.issue_labels ~user ~repo ~num in
API.delete ?token ~uri ~expected_code:`No_content (fun _b -> return ())
let is_issue = function
| { issue_pull_request = None; _ } -> true
| _ -> false
let is_pull = function
| { issue_pull_request = None; _ } -> false
| _ -> true
end
module Label = struct
open Lwt
let for_repo ?token ~user ~repo () =
let uri = URI.repo_labels ~user ~repo in
API.get_stream ?token ~uri (fun b -> return (labels_of_string b))
let get ?token ~user ~repo ~name () =
let uri = URI.repo_label ~user ~repo ~name in
API.get ?token ~uri (fun b -> return (label_of_string b))
let create ?token ~user ~repo ~label () =
let body = string_of_new_label label in
let uri = URI.repo_labels ~user ~repo in
API.post ?token ~body ~uri ~expected_code:`Created (fun b -> return (label_of_string b))
let update ?token ~user ~repo ~name ~label () =
let body = string_of_new_label label in
let uri = URI.repo_label ~user ~repo ~name in
API.patch ?token ~body ~uri ~expected_code:`OK (fun b -> return (label_of_string b))
let delete ?token ~user ~repo ~name () =
let uri = URI.repo_label ~user ~repo ~name in
API.delete ?token ~uri ~expected_code:`No_content (fun _ -> return ())
end
module Collaborator = struct
open Lwt
let for_repo ?token ~user ~repo () =
let uri = URI.repo_collaborators ~user ~repo in
API.get_stream ?token ~uri (fun b -> return (linked_users_of_string b))
let exists ?token ~user ~repo ~name () =
let uri = URI.repo_collaborator ~user ~repo ~name in
let fail_handlers = [
API.code_handler ~expected_code:`Not_found (fun _ -> return false);
] in
API.get ?token ~uri ~expected_code:`No_content ~fail_handlers
(fun _ -> return true)
let add ?token ~user ~repo ~name ?permission () =
let params = match permission with
| None -> None
| Some p -> Some ["permission", Github_j.string_of_team_permission p]
in
let uri = URI.repo_collaborator ~user ~repo ~name in
API.put ?token ~uri ?params ~expected_code:`No_content (fun _ -> return ())
let remove ?token ~user ~repo ~name () =
let uri = URI.repo_collaborator ~user ~repo ~name in
API.delete ?token ~uri ~expected_code:`No_content (fun _ -> return ())
end
module Status = struct
open Lwt
let for_ref ?token ~user ~repo ~git_ref () =
let uri = URI.repo_statuses ~user ~repo ~git_ref in
API.get_stream ?token ~uri (fun b -> return (statuses_of_string b))
let create ?token ~user ~repo ~sha ~status () =
let uri = URI.repo_statuses ~user ~repo ~git_ref:sha in
let body = string_of_new_status status in
API.post ~body ?token ~uri ~expected_code:`Created (fun b -> return (status_of_string b))
let get ?token ~user ~repo ~sha () =
let uri = URI.repo_commit_status ~user ~repo ~git_ref:sha in
API.get ?token ~uri (fun b -> return (combined_status_of_string b))
end
module Git_obj = struct
let type_to_string (o:obj_type)=
match o with
|`Tree -> "tree"
|`Commit -> "commit"
|`Blob -> "blob"
|`Tag -> "tag"
let split_ref ref =
match Stringext.split ~max:3 ~on:'/' ref with
|[_;ty;tl] -> ty, tl
|_ -> "", ref
end
module Repo = struct
module Hook = struct
open Lwt
let for_repo ?token ~user ~repo () =
let uri = URI.repo_hooks ~user ~repo in
API.get_stream ?token ~uri (fun b -> return (hooks_of_string b))
let get ?token ~user ~repo ~id () =
let uri = URI.repo_hook ~user ~repo ~id in
API.get ?token ~uri (fun b -> return (hook_of_string b))
let create ?token ~user ~repo ~hook () =
let uri = URI.repo_hooks ~user ~repo in
let body = string_of_new_hook hook in
API.post ~body ?token ~uri ~expected_code:`Created
(fun b -> return (hook_of_string b))
let update ?token ~user ~repo ~id ~hook () =
let uri = URI.repo_hook ~user ~repo ~id in
let body = string_of_update_hook hook in
API.patch ?token ~body ~uri ~expected_code:`OK
(fun b -> return (hook_of_string b))
let delete ?token ~user ~repo ~id () =
let uri = URI.repo_hook ~user ~repo ~id in
API.delete ?token ~uri (fun _ -> return ())
let test ?token ~user ~repo ~id () =
let uri = URI.repo_hook_test ~user ~repo ~id in
API.post ?token ~uri ~expected_code:`No_content (fun _b -> return ())
let parse_event = Organization.Hook.parse_event
let parse_event_metadata = Organization.Hook.parse_event_metadata
end
open Lwt
let create ?token ?organization ~repo () =
let body = string_of_new_repo repo in
let uri = match organization with
| None -> URI.repos
| Some org -> URI.org_repos ~org
in
API.post ~body ~expected_code:`Created ?token ~uri (fun b ->
return (repository_of_string b)
)
let info ?token ~user ~repo () =
let uri = URI.repo ~user ~repo in
API.get ?token ~uri (fun b -> return (repository_of_string b))
let fork ?token ?organization ~user ~repo () =
let uri = URI.repo_forks ~user ~repo in
let params = match organization with
| None -> []
| Some org -> ["organization",org]
in
API.post ~expected_code:`Accepted ?token ~params ~uri (fun b ->
return (repository_of_string b)
)
let forks ?token ?sort ~user ~repo () =
let uri = URI.repo_forks ~user ~repo in
let params = match sort with
| None -> []
| Some sort -> ["sort",Filter.string_of_forks_sort sort]
in
API.get_stream ?token ~params ~uri (fun b ->
return (repositories_of_string b)
)
let refs ?token ?ty ~user ~repo () =
let uri = URI.repo_refs ?ty ~user ~repo in
let fail_handlers = [
API.code_handler
~expected_code:`Not_found
(fun _ -> Lwt.return [])
] in
API.get_stream ?token ~uri
~fail_handlers
(fun b -> return (git_refs_of_string b))
let get_ref ?token ~user ~repo ~name () =
let uri = URI.repo_refs ~user ~ty:name ~repo in
API.get ?token ~uri (fun b -> return (git_ref_of_string b))
let branches ?token ~user ~repo () =
let uri = URI.repo_branches ~user ~repo in
API.get_stream ?token ~uri (fun b -> return (repo_branches_of_string b))
let get_commit ?token ~user ~repo ~sha () =
let uri = URI.repo_commit ~user ~repo ~sha in
API.get ?token ~uri (fun b -> return (commit_of_string b))
let get_tag ?token ~user ~repo ~sha () =
let uri = URI.repo_tag ~user ~repo ~sha in
API.get ?token ~uri (fun b -> return (tag_of_string b))
let get_tags_and_times ?token ~user ~repo () =
let open Monad in
let tags = refs ?token ~ty:"tags" ~user ~repo () in
Stream.map (fun hd ->
let _,name = Git_obj.split_ref hd.git_ref_name in
let sha = hd.git_ref_obj.obj_sha in
match hd.git_ref_obj.obj_ty with
|`Commit ->
get_commit ?token ~user ~repo ~sha ()
>>~ fun c ->
return [name, c.commit_git.git_commit_author.info_date]
|`Tag ->
get_tag ?token ~user ~repo ~sha ()
>>~ fun t ->
return [name, t.tag_tagger.info_date]
|_ -> return []
) tags
let tags ?token ~user ~repo () =
let uri = URI.repo_tags ~user ~repo in
API.get_stream ?token ~uri (fun b -> return (repo_tags_of_string b))
let contributors ?token ~user ~repo () =
let uri = URI.repo_contributors ~user ~repo in
API.get_stream ?token ~uri
(fun b -> return (contributors_of_string b))
let delete ?token ~user ~repo () =
let uri = URI.repo ~user ~repo in
API.delete ?token ~uri ~expected_code:`No_content (fun _b -> return ())
end
module Stats = struct
open Lwt
let contributors ?token ~user ~repo () =
let uri = URI.repo_contributors_stats ~user ~repo in
let fail_handlers = [
API.code_handler
~expected_code:`Accepted
(fun _ -> Lwt.return [])
] in
API.get_stream ?token ~uri
~fail_handlers
(fun b -> return (contributors_stats_of_string b))
let yearly_commit_activity ?token ~user ~repo () =
let uri = URI.repo_commit_activity ~user ~repo in
let fail_handlers = [
API.code_handler
~expected_code:`Accepted
(fun _ -> Lwt.return [])
] in
API.get_stream ?token ~uri
~fail_handlers
(fun b -> return (commit_activities_of_string b))
let weekly_commit_activity ?token ~user ~repo () =
let uri = URI.repo_code_frequency_stats ~user ~repo in
let fail_handlers = [
API.code_handler
~expected_code:`Accepted
(fun _ -> Lwt.return [])
] in
API.get_stream ?token ~uri
~fail_handlers
(fun b -> return (code_frequencies_of_string b))
let weekly_commit_count ?token ~user ~repo () =
let uri = URI.repo_participation_stats ~user ~repo in
API.get ?token ~uri
(fun b -> return (participation_of_string b))
let hourly_commit_count ?token ~user ~repo () =
let uri = URI.repo_code_hourly_stats ~user ~repo in
let fail_handlers = [
API.code_handler
~expected_code:`Accepted
(fun _ -> Lwt.return [])
] in
API.get_stream ?token ~uri
~fail_handlers
(fun b -> return (punch_cards_of_string b))
end
module Event = struct
open Lwt
let for_repo ?token ~user ~repo () =
let uri = URI.repo_events ~user ~repo in
API.get_stream ?token ~uri (fun b -> return (events_of_string b))
let public_events () =
let uri = URI.public_events in
API.get_stream ~uri (fun b -> return (events_of_string b))
let for_network ?token ~user ~repo () =
let uri = URI.network_events ~user ~repo in
API.get_stream ?token ~uri (fun b -> return (events_of_string b))
let for_org ?token ~org () =
let uri = URI.org_events ~org in
API.get_stream ?token ~uri (fun b -> return (events_of_string b))
let for_org_member ?token ~user ~org () =
let uri = URI.org_member_events ~user ~org in
API.get_stream ?token ~uri (fun b -> return (events_of_string b))
let received_by_user ?token ~user () =
let uri = URI.received_events ~user in
API.get_stream ?token ~uri (fun b -> return (events_of_string b))
let received_by_user_public ?token ~user () =
let uri = URI.public_received_events ~user in
API.get_stream ?token ~uri (fun b -> return (events_of_string b))
let for_user ?token ~user () =
let uri = URI.user_events ~user in
API.get_stream ?token ~uri (fun b -> return (events_of_string b))
let for_user_public ?token ~user () =
let uri = URI.public_user_events ~user in
API.get_stream ?token ~uri (fun b -> return (events_of_string b))
end
module Gist = struct
open Lwt
let uri_param_since uri = function
| None -> uri
| Some date -> Uri.add_query_param uri ("since", [date])
let for_user ?token ?since ~user () =
let uri = URI.list_users_gists ~user in
let uri = uri_param_since uri since in
API.get_stream ?token ~uri (fun b -> return (gists_of_string b))
let all ?token ?since () =
let uri = URI.gists in
let uri = uri_param_since uri since in
API.get_stream ?token ~uri (fun b -> return (gists_of_string b))
let all_public ?token ?since () =
let uri = URI.list_all_public_gists in
let uri = uri_param_since uri since in
API.get_stream ?token ~uri (fun b -> return (gists_of_string b))
let starred ?token ?since () =
let uri = URI.list_starred_gists in
let uri = uri_param_since uri since in
API.get_stream ?token ~uri (fun b -> return (gists_of_string b))
let get ?token ~id () =
let uri = URI.gist ~id in
API.get ?token ~uri (fun b -> return (gist_of_string b))
let create ?token ~gist () =
let uri = URI.gists in
let body = string_of_new_gist gist in
API.post ~body ?token ~uri ~expected_code:`Created (fun b -> return (gist_of_string b))
let update ?token ~id ~gist () =
let uri = URI.gist ~id in
let body = string_of_update_gist gist in
API.patch ~body ?token ~uri ~expected_code:`OK (fun b -> return (gist_of_string b))
let commits ?token ~id () =
let uri = URI.gist_commits ~id in
API.get_stream ?token ~uri (fun b -> return (gist_commits_of_string b))
let star ?token ~id () =
let uri = URI.gist_star ~id in
API.put ?token ~uri ~expected_code:`No_content (fun _b -> return ())
let unstar ?token ~id () =
let uri = URI.gist_star ~id in
API.delete ?token ~uri ~expected_code:`No_content (fun _b -> return ())
let fork ?token ~id () =
let uri = URI.gist_forks ~id in
API.post ?token ~uri ~expected_code:`Created (fun b -> return (gist_of_string b))
let forks ?token ~id () =
let uri = URI.gist_forks ~id in
API.get_stream ?token ~uri (fun b -> return (gist_forks_of_string b))
let delete ?token ~id () =
let uri = URI.gist ~id in
API.delete ?token ~uri ~expected_code:`No_content (fun _b -> return ())
end
module Search = struct
open Lwt
let search uri string_of_qualifier mk
?token ?sort ?(direction=`Desc) ~qualifiers ~keywords () =
let qs = List.rev_map string_of_qualifier qualifiers in
let q = String.concat " " (List.rev_append qs keywords) in
let sort = match sort with
| Some sort -> Some (Filter.string_of_repo_sort sort)
| None -> None
in
let direction = Filter.string_of_direction direction in
let params = [
"q", q;
"order",direction;
"per_page",string_of_int 100;
]@(match sort with None -> [] | Some s -> ["sort",s]) in
API.get_stream ~rate:Search ?token ~params ~uri (fun b ->
return [mk b]
)
let repos =
search
URI.repo_search
Filter.string_of_qualifier
repository_search_of_string
let issues =
search
URI.repo_search_issues
Filter.string_of_issue_qualifier
repository_issue_search_of_string
end
module Emoji = struct
open Lwt
let list ?token () =
let uri = URI.emojis in
API.get ?token ~uri (fun b -> return (emojis_of_string b))
end
end