Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contributions.of_json returns a result type #20

Merged
merged 2 commits into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
+ `Graphql.exec` now takes a `request`
+ `Contributions.fetch` has been replaced by `Contributions.request` that builds a `request`
- Add a `~user:User.t` parameter to `Contributions.request` and `Contributions.of_json` (#14, @gpetiot)
- `Contributions.of_json` now returns a result type (#20, @gpetiot)

## 0.2.0

Expand Down
2 changes: 1 addition & 1 deletion bin/main.ml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ let mtime path =
let get_token () = Token.load (home / ".github" / "github-activity-token")

let show ~from ~user json =
let contribs = Contributions.of_json ~from ~user json in
let* contribs = Contributions.of_json ~from ~user json in
if Contributions.is_empty contribs then
Fmt.epr "(no activity found since %s)@." from
else Fmt.pr "%a@." Contributions.pp contribs
Expand Down
112 changes: 61 additions & 51 deletions lib/contributions.ml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module Json = Yojson.Safe

let ( let* ) = Result.bind
let ( / ) a b = Json.Util.member b a

let query user =
Expand Down Expand Up @@ -66,8 +67,8 @@ module Datetime = struct
type t = string

let parse = function
| `String s -> s
| x -> Fmt.failwith "Invalid Datatime %a" Json.pp x
| `String s -> Ok s
| x -> Error (`Msg (Fmt.str "Invalid Datatime %a" Json.pp x))
end

module Repo_map = Map.Make (String)
Expand All @@ -83,75 +84,84 @@ type item = {

type t = { username : string; activity : item list Repo_map.t }

let to_string x =
Json.Util.to_string_option x
|> Option.to_result ~none:(`Msg (Fmt.str "Expected string, got %a" Json.pp x))

let combine lx =
List.fold_left
(fun acc x ->
let* acc = acc in
let* x = x in
Ok (x :: acc))
(Ok []) lx

let read_issues json =
Json.Util.to_list (json / "nodes")
|> List.filter (( <> ) `Null)
|> List.map @@ fun node ->
let date = Datetime.parse (node / "occurredAt") in
let x = node / "issue" in
let url = x / "url" |> Json.Util.to_string in
let title = x / "title" |> Json.Util.to_string in
let body = x / "body" |> Json.Util.to_string in
let repo = x / "repository" / "nameWithOwner" |> Json.Util.to_string in
{ kind = `Issue; date; url; title; body; repo }
|> List.map (fun node ->
let* date = Datetime.parse (node / "occurredAt") in
let x = node / "issue" in
let* url = x / "url" |> to_string in
let* title = x / "title" |> to_string in
let* body = x / "body" |> to_string in
let* repo = x / "repository" / "nameWithOwner" |> to_string in
Ok { kind = `Issue; date; url; title; body; repo })
|> combine

let read_prs json =
Json.Util.to_list (json / "nodes")
|> List.filter (( <> ) `Null)
|> List.map @@ fun node ->
let date = Datetime.parse (node / "occurredAt") in
let pr = node / "pullRequest" in
let url = pr / "url" |> Json.Util.to_string in
let title = pr / "title" |> Json.Util.to_string in
let body = pr / "body" |> Json.Util.to_string in
let repo = pr / "repository" / "nameWithOwner" |> Json.Util.to_string in
{ kind = `PR; date; url; title; body; repo }
|> List.map (fun node ->
let* date = node / "occurredAt" |> Datetime.parse in
let pr = node / "pullRequest" in
let* url = pr / "url" |> to_string in
let* title = pr / "title" |> to_string in
let* body = pr / "body" |> to_string in
let* repo = pr / "repository" / "nameWithOwner" |> to_string in
Ok { kind = `PR; date; url; title; body; repo })
|> combine

let read_reviews json =
Json.Util.to_list (json / "nodes")
|> List.filter (( <> ) `Null)
|> List.map @@ fun node ->
let date = Datetime.parse (node / "occurredAt") in
let review = node / "pullRequestReview" in
let state = review / "state" |> Json.Util.to_string in
let url = review / "url" |> Json.Util.to_string in
let pr = review / "pullRequest" in
let title = pr / "title" |> Json.Util.to_string in
let body = review / "body" |> Json.Util.to_string in
let repo =
review / "repository" / "nameWithOwner" |> Json.Util.to_string
in
{ kind = `Review state; date; url; title; body; repo }
|> List.map (fun node ->
let* date = node / "occurredAt" |> Datetime.parse in
let review = node / "pullRequestReview" in
let* state = review / "state" |> to_string in
let* url = review / "url" |> to_string in
let pr = review / "pullRequest" in
let* title = pr / "title" |> to_string in
let* body = review / "body" |> to_string in
let* repo = review / "repository" / "nameWithOwner" |> to_string in
Ok { kind = `Review state; date; url; title; body; repo })
|> combine

let read_repos json =
Json.Util.to_list (json / "nodes")
|> List.filter (( <> ) `Null)
|> List.map @@ fun node ->
let date = Datetime.parse (node / "occurredAt") in
let repo = node / "repository" in
let url = repo / "url" |> Json.Util.to_string in
let repo = repo / "nameWithOwner" |> Json.Util.to_string in
{
kind = `New_repo;
date;
url;
title = "Created new repository";
body = "";
repo;
}
|> List.map (fun node ->
let* date = node / "occurredAt" |> Datetime.parse in
let repo = node / "repository" in
let* url = repo / "url" |> to_string in
let* repo = repo / "nameWithOwner" |> to_string in
let title = "Created new repository" in
Ok { kind = `New_repo; date; url; title; body = ""; repo })
|> combine

let of_json ~from ~user json =
let username =
json / "data" / User.response_field user / "login" |> Json.Util.to_string
let* username =
json / "data" / User.response_field user / "login" |> to_string
in
let contribs =
json / "data" / User.response_field user / "contributionsCollection"
in
let items =
read_issues (contribs / "issueContributions")
@ read_prs (contribs / "pullRequestContributions")
@ read_reviews (contribs / "pullRequestReviewContributions")
@ read_repos (contribs / "repositoryContributions")
let* items =
let* issues = read_issues (contribs / "issueContributions") in
let* prs = read_prs (contribs / "pullRequestContributions") in
let* reviews = read_reviews (contribs / "pullRequestReviewContributions") in
let* repos = read_repos (contribs / "repositoryContributions") in
Ok (issues @ prs @ reviews @ repos)
in
let activity =
(* GitHub seems to ignore the time part, so do the filtering here. *)
Expand All @@ -165,7 +175,7 @@ let of_json ~from ~user json =
Repo_map.add item.repo (item :: items) acc)
Repo_map.empty
in
{ username; activity }
Ok { username; activity }

let id url =
match Astring.String.cut ~sep:"/" ~rev:true url with
Expand Down
3 changes: 2 additions & 1 deletion lib/contributions.mli
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ type t = { username : string; activity : item list Repo_map.t }
val request :
period:string * string -> user:User.t -> token:Token.t -> Graphql.request

val of_json : from:string -> user:User.t -> Yojson.Safe.t -> t
val of_json :
from:string -> user:User.t -> Yojson.Safe.t -> (t, [ `Msg of string ]) result
(** We pass [from] again here so we can filter out anything that GitHub included by accident. *)

val is_empty : t -> bool
Expand Down
7 changes: 4 additions & 3 deletions test/lib/test_contributions.ml
Original file line number Diff line number Diff line change
Expand Up @@ -406,19 +406,20 @@ let test_of_json =
let name = Printf.sprintf "of_json: %s" name in
let test_fun () =
let actual = Contributions.of_json ~from ~user json in
Alcotest.(check Testable.contributions) name expected actual
Alcotest.(check (Alcotest_ext.or_msg Testable.contributions))
name expected actual
in
(name, `Quick, test_fun)
in
[
(let user = User.Viewer in
make_test "no token" ~from:"" ~user
(activity_example_json ~user)
~expected:(contributions_example ~user));
~expected:(Ok (contributions_example ~user)));
(let user = User.User "gpetiot" in
make_test "no token" ~from:"" ~user
(activity_example_json ~user)
~expected:(contributions_example ~user));
~expected:(Ok (contributions_example ~user)));
]

let test_is_empty =
Expand Down
Loading