Source file api.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
open Lwt.Infix
open Current.Syntax
let pool = Current.Pool.create ~label:"github" 1
let webhook_cond = Hashtbl.create 10
let await_event ~owner_name =
let cond =
match Hashtbl.find_opt webhook_cond owner_name with
| Some c -> c
| None ->
let c = Lwt_condition.create () in
Hashtbl.add webhook_cond owner_name c;
c
in
Lwt_condition.wait cond
type actions = < rebuild : (unit -> string) option; >
let lookup_actions ~engine job_id =
let state = Current.Engine.state engine in
let jobs = state.Current.Engine.jobs in
match Current.Job.Map.find_opt job_id jobs with
| Some a -> (a :> actions)
| None ->
object
method rebuild = None
end
let rebuild_webhook ~engine ~has_role json =
let job_id = Yojson.Safe.Util.(json |> member "check_run" |> member "external_id" |> to_string) in
let action = Yojson.Safe.Util.(json |> member "action" |> to_string) in
let requester = Yojson.Safe.Util.(json |> member "sender" |> member "login" |> to_string
|> (fun x -> Current_web.User.v_exn @@ "github:" ^ x)) in
Log.info (fun f -> f "rebuild_webhook %s %s triggered by %s" action job_id (Current_web.User.id requester));
match (action, has_role (Some requester) `Builder) with
| ("rerequested", true) -> begin
let actions = lookup_actions ~engine job_id in
match actions#rebuild with
| None ->
Log.info (fun f -> f "not rebuilding");
()
| Some rebuild ->
let new_job_id = rebuild () in
Log.info (fun f -> f "rebuilding new_job_id %s" new_job_id);
()
end
| _ -> ()
let input_webhook body =
let owner_name = Yojson.Safe.Util.(body |> member "repository" |> member "full_name" |> to_string) in
match Hashtbl.find_opt webhook_cond owner_name with
| Some cond -> Lwt_condition.broadcast cond ()
| None -> Log.info (fun f -> f "Got webhook event for %S, but we're not interested in that" owner_name)
module Metrics = struct
open Prometheus
let namespace = "ocurrent"
let subsystem = "github"
let remaining_points =
let help = "Points remaining at time of last query" in
Gauge.v_label ~label_name:"account" ~help ~namespace ~subsystem "remaining_points"
let used_points_total =
let help = "Total GraphQL query points used" in
Counter.v_label ~label_name:"account" ~help ~namespace ~subsystem "used_points_total"
let refs_total =
let help = "Total number of monitored branches" in
Gauge.v_labels ~label_names:["account"; "name"] ~help ~namespace ~subsystem "refs_total"
let prs_total =
let help = "Total number of monitored PRs" in
Gauge.v_labels ~label_names:["account"; "name"] ~help ~namespace ~subsystem "prs_total"
end
let graphql_endpoint = Uri.of_string "https://api.github.com/graphql"
let status_endpoint ~owner_name ~commit =
Uri.of_string (Fmt.str "https://api.github.com/repos/%s/statuses/%s"
owner_name commit)
let read_file path =
let ch = open_in_bin path in
Fun.protect
(fun () ->
let len = in_channel_length ch in
really_input_string ch len
)
~finally:(fun () -> close_in ch)
module Repo_map = Map.Make(Repo_id)
module Status = struct
type state = [`Error | `Failure | `Pending | `Success ]
type t = {
state : state;
description : string option;
url : Uri.t option;
}
let v ?description ?url state =
let description = Option.map (Astring.String.with_range ~len:140) description in
{ state; description; url }
let state_to_string = function
| `Error -> "error"
| `Failure -> "failure"
| `Pending -> "pending"
| `Success -> "success"
let json_items { state; description; url } =
["state", `String (state_to_string state)] @
(match description with None -> [] | Some x -> ["description", `String x]) @
(match url with None -> [] | Some x -> ["target_url", `String (Uri.to_string x)])
let digest t = Yojson.Safe.to_string @@ `Assoc (json_items t)
let pp f t = Fmt.string f (digest t)
end
module CheckRunStatus = struct
type conclusion = [`Failure of string | `Success | `Skipped of string]
type state = [`Queued | `InProgress | `Completed of conclusion]
type action = { label:string; description:string; identifier:string }
type t = {
state: state;
summary: string option;
text: string option;
actions: action list;
url: Uri.t option;
identifier: string option;
}
let action ~label ~description ~identifier = { label; description; identifier }
let action_to_json {label; description; identifier} =
`Assoc [ ("label", `String label)
; ("description", `String description)
; ("identifier", `String identifier)]
let v ?text ?summary ?url ?(actions=[]) ?identifier state =
let text = Option.map (Astring.String.with_range ~len:65535) text in
let summary = Option.map (Astring.String.with_range ~len:65535) summary in
{ state; summary; text; actions; url; identifier }
let state_json ~title ~summary ~text ~status ?url ?conclusion ?actions ?identifier () =
let output = [ ("title", `String title)
; ("summary", `String summary) ] @
(match text with None -> [] | Some x -> ["text", `String x])
in
[ "status", `String status
; "output", `Assoc output ] @
(match url with None -> [] | Some url -> ["details_url", `String (Uri.to_string url)]) @
(match conclusion with None -> [] | Some conclusion -> ["conclusion", `String conclusion]) @
(match actions with None -> [] | Some actions -> ["actions", `List (List.map action_to_json actions)]) @
(match identifier with None -> [] | Some x -> ["external_id", `String x])
let json_items { state; text; summary; actions; url; identifier } =
match state with
| `Queued ->
state_json ()
~title:"Queued"
~summary:(Option.value summary ~default:"Queued")
~status:"queued"
~text
?identifier
?url
| `InProgress ->
state_json ()
~title:"InProgress"
~summary:(Option.value summary ~default:"InProgress")
~status:"inprogress"
~text
?identifier
| `Completed `Success ->
state_json ()
~title:"Completed"
~summary:(Option.value summary ~default:"Completed")
~status:"completed"
~text
~conclusion:"success"
?identifier
| `Completed (`Failure _) ->
state_json ()
~title:"Failure"
~summary:(Option.value summary ~default:"Failure")
~status:"completed"
~text
~conclusion:"failure"
~actions
?identifier
| `Completed (`Skipped _) ->
state_json ()
~title:"Skipped"
~summary:(Option.value summary ~default:"Skipped")
~status:"completed"
~text
~conclusion:"skipped"
~actions
?identifier
let digest t = Yojson.Safe.to_string @@ `Assoc (json_items t)
let pp f t = Fmt.string f (digest t)
end
type token = {
token : (string, [`Msg of string]) result;
expiry : float option;
}
let no_token = {
token = Error (`Msg "Not fetched yet");
expiry = Some (-1.0);
}
module Ref = struct
type pr_info = {
id: int;
base: string;
title: string;
bodyHTML: string;
} [@@deriving to_yojson]
type t = [ `Ref of string | `PR of pr_info ] [@@deriving to_yojson]
type id = [ `Ref of string | `PR of int ]
let compare = Stdlib.compare
let pp f = function
| `Ref r -> Fmt.string f r
| `PR {id; base; title; _} -> Fmt.pf f "PR #%d on %s:@ %s" id base title
let pp_id f = function
| `Ref r -> Fmt.string f r
| `PR id -> Fmt.pf f "PR #%d" id
let to_git = function
| `Ref head -> head
| `PR {id; _} -> Fmt.str "refs/pull/%d/head" id
end
module Ref_map = Map.Make(Ref)
module Commit_id = struct
type t = {
owner: string;
repo : string;
id : Ref.t;
hash : string;
committed_date : string;
message : string;
} [@@deriving to_yojson]
let to_git { owner; repo; id; hash; committed_date = _; message = _ } =
let repo = Fmt.str "https://github.com/%s/%s.git" owner repo in
let gref = Ref.to_git id in
Current_git.Commit_id.v ~repo ~gref ~hash
let owner_name { owner; repo; _} = Fmt.str "%s/%s" owner repo
let uri t =
Uri.make ~scheme:"https" ~host:"github.com" ~path:(Printf.sprintf "/%s/%s/commit/%s" t.owner t.repo t.hash) ()
let pp_id = Ref.pp
let compare {owner; repo; id; hash; committed_date = _; message = _} b =
match compare hash b.hash with
| 0 ->
begin match Ref.compare id b.id with
| 0 -> compare (owner, repo) (b.owner, b.repo)
| x -> x
end
| x -> x
let pp f { owner; repo; id; hash; committed_date; message } =
Fmt.pf f "%s/%s@ %a@ %s@ %s (%s)" owner repo pp_id id (Astring.String.with_range ~len:8 hash) committed_date message
let pp_short f { owner; repo; hash; _ } =
Fmt.pf f "%s/%s@ %s" owner repo (Astring.String.with_range ~len:8 hash)
let digest t = Yojson.Safe.to_string (to_yojson t)
end
module Repo_key = struct
type key = ..
type elt = ..
type t = key * Repo_id.t
let compare (a_key, a_id) (b_key, b_id) =
match Stdlib.compare a_key b_key with
| 0 -> Repo_id.compare a_id b_id
| cmp -> cmp
end
module Monitors = Map.Make(Repo_key)
type monitors = Repo_key.elt Monitors.t
type t = {
account : string;
get_token : unit -> token Lwt.t;
app_id : string option;
webhook_secret : string;
token_lock : Lwt_mutex.t;
mutable token : token;
mutable monitors: monitors;
}
and commit = t * Commit_id.t
and refs = {
default_ref : string;
all_refs : commit Ref_map.t
}
let webhook_secret t = t.webhook_secret
let default_ref t = t.default_ref
let all_refs t = t.all_refs
let v ~get_token ?app_id ~account ~webhook_secret () =
let monitors = Monitors.empty in
let token_lock = Lwt_mutex.create () in
{ get_token; token_lock; token = no_token; monitors; account; app_id; webhook_secret }
let of_oauth ~token ~webhook_secret =
let get_token () = Lwt.return { token = Ok token; expiry = None} in
v ~get_token ~account:"oauth" ~webhook_secret ()
let get_token t =
Lwt_mutex.with_lock t.token_lock @@ fun () ->
let now = Unix.gettimeofday () in
match t.token with
| { token; expiry = None } -> Lwt.return token
| { token; expiry = Some expiry } when now < expiry -> Lwt.return token
| _ ->
Log.info (fun f -> f "Getting API token");
Lwt.catch t.get_token
(fun ex ->
Log.warn (fun f -> f "Error getting GitHub token: %a" Fmt.exn ex);
let token = Error (`Msg "Failed to get GitHub token") in
let expiry = Some (now +. 60.0) in
Lwt.return {token; expiry}
)
>|= fun token ->
t.token <- token;
token.token
let ( / ) a b = Yojson.Safe.Util.member b a
let exec_graphql ?variables t query =
let body =
`Assoc (
("query", `String query) ::
(match variables with
| None -> []
| Some v -> ["variables", `Assoc v])
)
|> Yojson.Safe.to_string
|> Cohttp_lwt.Body.of_string
in
get_token t >>= function
| Error (`Msg m) -> Lwt.fail_with m
| Ok token ->
let = Cohttp.Header.init_with "Authorization" ("bearer " ^ token) in
Cohttp_lwt_unix.Client.post ~headers ~body graphql_endpoint >>=
fun (resp, body) ->
Cohttp_lwt.Body.to_string body >|= fun body ->
match Cohttp.Response.status resp with
| `OK ->
let json = Yojson.Safe.from_string body in
let open Yojson.Safe.Util in
begin match json / "errors" with
| `Null -> json
| errors ->
Log.warn (fun f -> f "@[<v2>GitHub returned errors: %a@]" (Yojson.Safe.pretty_print ~std:true) json);
match errors with
| `List (error :: _) ->
let msg = error / "message" |> to_string in
Fmt.failwith "Error from GitHub GraphQL: %s" msg;
| _ ->
Fmt.failwith "Unknown error type from GitHub GraphQL"
end
| err ->
Log.warn (fun f -> f "@[<v2>Error performing GraphQL query on GitHub: %s@,%s@]"
(Cohttp.Code.string_of_status err)
body);
Fmt.failwith "Error performing GraphQL query on GitHub: %s" (Cohttp.Code.string_of_status err)
let handle_rate_limit t name json =
let open Yojson.Safe.Util in
let cost = json / "cost" |> to_int in
let remaining = json / "remaining" |> to_int in
let reset_at = json / "resetAt" |> to_string in
Log.info (fun f -> f "GraphQL(%s): cost:%d remaining:%d resetAt:%s" name cost remaining reset_at);
Prometheus.Counter.inc (Metrics.used_points_total t.account) (float_of_int cost);
Prometheus.Gauge.set (Metrics.remaining_points t.account) (float_of_int remaining)
module type GRAPHQL_QUERY = sig
type result
val name : string
val query : string
val of_yojson : t -> Repo_id.t -> Yojson.Safe.t -> result
end
module Monitor (Query : GRAPHQL_QUERY) = struct
type Repo_key.key += Key
type Repo_key.elt += Value of Query.result Current.Monitor.t
let query =
"query($owner: String!, $name: String!) { "
^ "rateLimit { cost remaining resetAt } "
^ Query.query
^ " }"
let exec t ({ Repo_id.owner = repo_owner; name = repo_name } as repo) =
let variables = [
"owner", `String repo_owner;
"name", `String repo_name;
] in
exec_graphql t ~variables query >|= fun json ->
try
let data = json / "data" in
handle_rate_limit t "default_ref" (data / "rateLimit");
Query.of_yojson t repo data
with ex ->
let pp f j = Yojson.Safe.pretty_print f j in
Log.err (fun f -> f "@[<v2>Invalid JSON: %a@,%a@]" Fmt.exn ex pp json);
raise ex
let make_monitor t repo =
let read () =
Lwt.catch
(fun () -> exec t repo >|= fun c -> Ok c)
(fun ex -> Lwt_result.fail @@ `Msg (Fmt.str "GitHub query %s for %a failed: %a" Query.name Repo_id.pp repo Fmt.exn ex))
in
let watch refresh =
let owner_name = Printf.sprintf "%s/%s" repo.owner repo.name in
let rec aux x =
x >>= fun () ->
let x = await_event ~owner_name in
refresh ();
Lwt_unix.sleep 10.0 >>= fun () ->
aux x
in
let x = await_event ~owner_name in
let thread =
Lwt.catch
(fun () -> aux x)
(function
| Lwt.Canceled -> Lwt.return_unit
| ex -> Log.err (fun f -> f "%s thread failed: %a" Query.name Fmt.exn ex); Lwt.return_unit
)
in
Lwt.return (fun () -> Lwt.cancel thread; Lwt.return_unit)
in
let pp f = Fmt.pf f "Watch %a %s" Repo_id.pp repo Query.name in
Current.Monitor.create ~read ~watch ~pp
let get t repo =
let monitor =
let key = (Key, repo) in
match Monitors.find_opt key t.monitors with
| Some (Value i) -> i
| _ ->
let i = make_monitor t repo in
t.monitors <- Monitors.add key (Value i) t.monitors;
i
in
Current.Monitor.get monitor
end
module Head_ref = Monitor(struct
type result = commit
let name = "head ref"
let query = {|
repository(owner: $owner, name: $name) {
nameWithOwner
defaultBranchRef {
prefix
name
target {
...on Commit {
oid
committedDate
message
}
}
}
}
|}
let of_yojson t { Repo_id.owner ; name } data =
let open Yojson.Safe.Util in
let repo = data / "repository" in
let def = repo / "defaultBranchRef" in
let prefix = def / "prefix" |> to_string in
let branch_name = def / "name" |> to_string in
let hash = def / "target" / "oid" |> to_string in
let committed_date = def / "target" / "committedDate" |> to_string in
let message = def / "target" / "message" |> to_string in
let commit_id =
{ Commit_id.owner; repo = name; id = `Ref (prefix ^ branch_name); hash; committed_date; message }
in
t, commit_id
end)
let head_commit t repo =
Current.component "%a head" Repo_id.pp repo |>
let> () = Current.return () in
Head_ref.get t repo
module Refs = Monitor(struct
type result = refs
let name = "refs"
let query = {|
repository(owner: $owner, name: $name) {
nameWithOwner
defaultBranchRef {
name
}
refs(first: 100, refPrefix:"refs/heads/") {
totalCount
edges {
node {
name
target {
...on Commit {
oid
committedDate
message
}
}
}
}
}
pullRequests(first: 100, states:[OPEN]) {
totalCount
edges {
node {
number
headRefOid
baseRefName
title
bodyHTML
commits(last: 1) {
nodes {
commit {
committedDate
message
}
}
}
}
}
}
}
|}
let parse_ref ~owner ~repo ~prefix json =
let open Yojson.Safe.Util in
let node = json / "node" in
let name = node / "name" |> to_string in
let hash = node / "target" / "oid" |> to_string in
let committed_date = node / "target" / "committedDate" |> to_string in
let message = node / "target" / "message" |> to_string in
{ Commit_id.owner; Commit_id.repo; id = `Ref (prefix ^ name); hash; committed_date; message }
let parse_pr ~owner ~repo json =
let open Yojson.Safe.Util in
let node = json / "node" in
let base = node / "baseRefName" |> to_string in
let hash = node / "headRefOid" |> to_string in
let pr = node / "number" |> to_int in
let title = node / "title" |> to_string in
let bodyHTML = node / "bodyHTML" |> to_string in
let nodes = node / "commits" / "nodes" |> to_list in
if List.length nodes = 0 then Fmt.failwith "Failed to get latest commit for %s/%s" owner repo else
let committed_date = List.hd nodes / "commit" / "committedDate" |> to_string in
let message = List.hd nodes / "commit" / "message" |> to_string in
{ Commit_id.owner; Commit_id.repo; id = `PR {id=pr; base; title; bodyHTML}; hash; committed_date; message }
let of_yojson t { Repo_id.owner; name } data =
let open Yojson.Safe.Util in
let repo = data / "repository" in
let default_ref = repo / "defaultBranchRef" / "name" |> to_string |> ( ^ ) "refs/heads/" in
let refs =
repo / "refs" / "edges" |> to_list |> List.map (parse_ref ~owner ~repo:name ~prefix:"refs/heads/") in
let prs =
repo / "pullRequests" / "edges" |> to_list |> List.map (parse_pr ~owner ~repo:name) in
let n_branches = repo / "refs" / "totalCount" |> to_int in
let n_prs = repo / "pullRequests" / "totalCount" |> to_int in
Prometheus.Gauge.set (Prometheus.Gauge.labels Metrics.refs_total [owner; name]) (float_of_int n_branches);
Prometheus.Gauge.set (Prometheus.Gauge.labels Metrics.prs_total [owner; name]) (float_of_int n_prs);
if List.length refs < n_branches then
Log.warn (fun f -> f "Too many branches in %s/%s (%d)" owner name n_branches);
if List.length prs < n_prs then
Log.warn (fun f -> f "Too many open PRs in %s/%s (%d)" owner name n_prs);
let add xs map = List.fold_left (fun acc x -> Ref_map.add x.Commit_id.id (t, x) acc) map xs in
Ref_map.empty
|> add refs
|> add prs
|> fun all_refs -> { default_ref; all_refs }
end)
let refs t repo = Refs.get t repo
let to_ptime str =
Ptime.of_rfc3339 str |> function
| Ok (t, _, _) -> t
| Error (`RFC3339 (_, e)) -> Fmt.failwith "%a" Ptime.pp_rfc3339_error e
let remove_stale ?staleness ~default_ref refs =
match staleness with
| None -> refs
| Some staleness ->
let cutoff = Unix.gettimeofday () -. Duration.to_f staleness in
let active x =
let committed = Ptime.to_float_s (to_ptime x.Commit_id.committed_date) in
committed > cutoff
in
let is_default = function
| { Commit_id.id = `Ref t; _ } -> String.equal default_ref t
| _ -> false
in
List.filter (fun (_, x) -> is_default x || active x) refs
let to_ci_refs ?staleness refs =
refs.all_refs
|> Ref_map.remove (`Ref "refs/heads/gh-pages")
|> Ref_map.bindings
|> List.map snd
|> remove_stale ?staleness ~default_ref:refs.default_ref
let ci_refs ?staleness t repo =
let+ refs =
Current.component "%a CI refs" Repo_id.pp repo |>
let> () = Current.return () in
refs t repo
in
to_ci_refs ?staleness refs
let head_of t repo (id: Ref.id) =
Current.component "%a@,%a" Repo_id.pp repo Ref.pp_id id |>
let> () = Current.return () in
refs t repo
|> Current.Primitive.map_result @@ function
| Error _ as e -> e
| Ok refs ->
Ref_map.fold (fun ref value acc ->
match id, ref with
| `Ref a, `Ref b when String.equal a b -> Some value
| `PR (id_a: int), `PR {Ref.id;_} when id_a = id -> Some value
| _ -> acc) refs.all_refs None
|> function
| Some x -> Ok x
| None -> Error (`Msg (Fmt.str "No such ref %a/%a" Repo_id.pp repo Ref.pp_id id))
module CheckRun = struct
module Set_status = struct
let id = "github-check-run-set-status"
type nonrec t = t
module Key = struct
type t = {
commit : Commit_id.t;
check_name : string;
}
let to_json { commit; check_name } =
`Assoc [
"commit", `String (Commit_id.digest commit);
"check_name", `String check_name
]
let digest t = Yojson.Safe.to_string (to_json t)
end
module Value = CheckRunStatus
module Outcome = Current.Unit
let auto_cancel = true
let pp f ({ Key.commit; check_name }, status) =
Fmt.pf f "Set %a/%s to@ %a"
Commit_id.pp commit
check_name
Value.pp status
let publish t job key status =
Current.Job.start job ~pool ~level:Current.Level.Above_average >>= fun () ->
get_token t >>= function
| Error (`Msg m) -> Lwt.fail_with m
| Ok token ->
let token = Github.Token.of_string token in
let owner = key.Key.commit.owner in
let repo = key.Key.commit.repo in
let sha = key.Key.commit.hash in
let app_id = t.app_id in
let check_name = key.Key.check_name in
let create_check () =
let open Github in
let body = `Assoc (("name", `String check_name)
:: ("head_sha", `String key.Key.commit.hash)
:: Value.json_items status) |> Yojson.Safe.to_string in
Log.debug (fun f -> f "create_check: %s" body);
Check.create_check_run ~token ~owner ~repo ~body () in
let fetch_check_run () =
let open Github in
let open Monad in
Check.list_check_runs_for_ref ~token ~owner ~repo ~sha ?app_id ~check_name () >>~
fun l -> return @@ List.nth_opt l.check_runs 0 in
let update_check_run check_run () =
let open Github in
let check_run_id = Int64.to_string check_run.Github_j.check_run_id in
let body = `Assoc (Value.json_items status) |> Yojson.Safe.to_string in
Log.debug (fun f -> f "update_check: %s" body);
Check.update_check_run ~token ~owner ~repo ~check_run_id ~body () in
Lwt.try_bind ( fun () ->
let open Github in
let open Monad in
run (
fetch_check_run () >>= function
| None -> create_check ()
| Some check_run -> update_check_run check_run ()))
(fun (_ : Github_j.check_run Github.Response.t) -> Lwt_result.return ())
(fun ex ->
Log.info (fun f -> f "@[<v2>%a failed: %a@]"
pp (key, status)
Fmt.exn ex);
Lwt_result.fail (`Msg "Failed to set GitHub status"))
end
module Set_status_cache = Current_cache.Output(Set_status)
type t = commit
let set_status commit check_name status =
Current.component "set_check_run_status" |>
let> (t, commit) = commit
and> status = status in
Set_status_cache.set t {Set_status.Key.commit; check_name} status
end
module Commit = struct
module Set_status = struct
let id = "github-set-status"
type nonrec t = t
module Key = struct
type t = {
commit : Commit_id.t;
context : string;
}
let to_json { commit; context } =
`Assoc [
"commit", `String (Commit_id.digest commit);
"context", `String context
]
let digest t = Yojson.Safe.to_string (to_json t)
end
module Value = Status
module Outcome = Current.Unit
let auto_cancel = true
let pp f ({ Key.commit; context }, status) =
Fmt.pf f "Set %a/%s to@ %a"
Commit_id.pp commit
context
Value.pp status
let publish t job key status =
Current.Job.start job ~pool ~level:Current.Level.Above_average >>= fun () ->
let {Key.commit; context} = key in
let body = `Assoc (("context", `String context) :: Value.json_items status) in
get_token t >>= function
| Error (`Msg m) -> Lwt.fail_with m
| Ok token ->
let = Cohttp.Header.init_with "Authorization" ("bearer " ^ token) in
let uri = status_endpoint
~owner_name:(Commit_id.owner_name commit)
~commit:commit.Commit_id.hash
in
Current.Job.log job "@[<v2>POST %a:@,%a@]"
Uri.pp uri
(Yojson.Safe.pretty_print ~std:true) body;
let body = body |> Yojson.Safe.to_string |> Cohttp_lwt.Body.of_string in
Lwt.try_bind
(fun () ->
Cohttp_lwt_unix.Client.post ~headers ~body uri >>= fun (resp, body) ->
Cohttp_lwt.Body.to_string body >|= fun body -> (resp, body)
)
(fun (resp, body) ->
match Cohttp.Response.status resp with
| `Created -> Lwt_result.return ()
| err ->
Log.warn (fun f -> f "@[<v2>%a failed: %s@,%s@]"
pp (key, status)
(Cohttp.Code.string_of_status err)
body);
Lwt_result.fail (`Msg "Failed to set GitHub status")
)
(fun ex ->
Log.warn (fun f -> f "@[<v2>%a failed: %a@]"
pp (key, status)
Fmt.exn ex);
Lwt_result.fail (`Msg "Failed to set GitHub status")
)
end
module Set_status_cache = Current_cache.Output(Set_status)
type t = commit
let uri (_, commit) = Commit_id.uri commit
let id (_, commit_id) = Commit_id.to_git commit_id
let compare (_, a) (_, b) = Commit_id.compare a b
let owner_name (_, id) = Commit_id.owner_name id
let repo_id t =
let full = owner_name t in
match Astring.String.cut ~sep:"/" full with
| Some (owner, name) -> { Repo_id.owner; name}
| None -> Fmt.failwith "Invalid owner_name %S" full
let hash (_, id) = id.Commit_id.hash
let committed_date (_, id) = id.Commit_id.committed_date
let message (_, id) = id.Commit_id.message
let pp = Fmt.using snd Commit_id.pp
let pp_short = Fmt.using snd Commit_id.pp_short
let set_status commit context status =
Current.component "set_status" |>
let> (t, commit) = commit
and> status = status in
Set_status_cache.set t {Set_status.Key.commit; context} status
end
module Repo = struct
type nonrec t = t * Repo_id.t
let id = snd
let pp = Fmt.using id Repo_id.pp
let compare a b = Repo_id.compare (id a) (id b)
let head_commit t =
Current.component "head" |>
let> (api, repo) = t in
Head_ref.get api repo
let ci_refs ?staleness t =
let+ refs =
Current.component "CI refs" |>
let> (api, repo) = t in
refs api repo
in
to_ci_refs ?staleness refs
end
module Anonymous = struct
let ref_endpoint ~owner ~name gref =
let gref = Ref.to_git gref in
match Astring.String.cut ~sep:"/" gref with
| Some ("refs", gref) -> Uri.of_string (Printf.sprintf "https://api.github.com/repos/%s/%s/git/ref/%s" owner name gref)
| Some _ -> Fmt.failwith "Ref %S does not start with 'refs/'!" gref
| None -> Fmt.failwith "Missing '/' in ref %S" gref
let query_head { Repo_id.owner; name } gref =
let uri = ref_endpoint ~owner ~name gref in
Cohttp_lwt_unix.Client.get uri >>= fun (resp, body) ->
Cohttp_lwt.Body.to_string body >|= fun body ->
match Cohttp.Response.status resp with
| `OK | `Created ->
let json = Yojson.Safe.from_string body in
Log.debug (fun f -> f "@[<v2>Got response:@,%a@]" Yojson.Safe.pp json);
let open Yojson.Safe.Util in
json |> member "object" |> member "sha" |> to_string
| err -> Fmt.failwith "@[<v2>Error accessing GitHub App API at %a: %s@,%s@]"
Uri.pp uri
(Cohttp.Code.string_of_status err)
body
let head_of (repo : Repo_id.t) gref =
let owner_name = Printf.sprintf "%s/%s" repo.owner repo.name in
let read () =
Lwt.try_bind
(fun () -> query_head repo gref)
(fun hash ->
let id = { Commit_id.owner = repo.owner; repo = repo.name; hash; id = gref; committed_date = ""; message = "" } in
Lwt_result.return (Commit_id.to_git id)
)
(fun ex ->
Log.warn (fun f -> f "GitHub query_head failed: %a" Fmt.exn ex);
Lwt_result.fail (`Msg (Fmt.str "Failed to get head of %a:%a" Repo_id.pp repo Ref.pp gref))
)
in
let watch refresh =
let rec aux x =
x >>= fun () ->
let x = await_event ~owner_name in
refresh ();
Lwt_unix.sleep 10.0 >>= fun () ->
aux x
in
let x = await_event ~owner_name in
let thread =
Lwt.catch
(fun () -> aux x)
(function
| Lwt.Canceled -> Lwt.return_unit
| ex -> Log.err (fun f -> f "Anonymous.head thread failed: %a" Fmt.exn ex); Lwt.return_unit
)
in
Lwt.return (fun () -> Lwt.cancel thread; Lwt.return_unit)
in
let pp f = Fmt.pf f "Query head of %a:%a" Repo_id.pp repo Ref.pp gref in
let monitor = Current.Monitor.create ~read ~watch ~pp in
Current.component "%a:%a" Repo_id.pp repo Ref.pp gref |>
let> () = Current.return () in
Current.Monitor.get monitor
end
open Cmdliner
let token_file =
Arg.opt Arg.(some file) None @@
Arg.info
~doc:"A file containing the GitHub OAuth token."
~docv:"PATH"
["github-token-file"]
let webhook_secret_file =
Arg.required @@
Arg.opt Arg.(some string) None @@
Arg.info
~doc:"A file containing the GitHub Webhook secret."
~docv:"WEBHOOK_SECRET"
["github-webhook-secret-file"]
let make_config webhook_secret_file token_file =
let token = String.trim (read_file token_file) in
let webhook_secret = String.trim (read_file webhook_secret_file) in
of_oauth ~token ~webhook_secret
let make_config_opt webhook_secret_file token_file =
Option.map (make_config webhook_secret_file) token_file
let cmdliner =
Term.(const make_config $ webhook_secret_file $ Arg.required token_file)
let cmdliner_opt =
Term.(const make_config_opt $ webhook_secret_file $ Arg.value token_file)