package volgo

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file platform_repo.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
(*******************************************************************************)
(*  Volgo - a Versatile OCaml Library for Git Operations                       *)
(*  Copyright (C) 2024-2025 Mathieu Barbin <mathieu.barbin@gmail.com>          *)
(*                                                                             *)
(*  This file is part of Volgo.                                                *)
(*                                                                             *)
(*  Volgo is free software; you can redistribute it and/or modify it under     *)
(*  the terms of the GNU Lesser General Public License as published by the     *)
(*  Free Software Foundation either version 3 of the License, or any later     *)
(*  version, with the LGPL-3.0 Linking Exception.                              *)
(*                                                                             *)
(*  Volgo is distributed in the hope that it will be useful, but WITHOUT ANY   *)
(*  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS  *)
(*  FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License and    *)
(*  the file `NOTICE.md` at the root of this repository for more details.      *)
(*                                                                             *)
(*  You should have received a copy of the GNU Lesser General Public License   *)
(*  and the LGPL-3.0 Linking Exception along with this library. If not, see    *)
(*  <http://www.gnu.org/licenses/> and <https://spdx.org>, respectively.       *)
(*******************************************************************************)

open! Import

module Vcs_kind = struct
  [@@@coverage off]

  type t =
    | Git
    | Hg
  [@@deriving_inline enumerate, sexp_of]

  let all = ([ Git; Hg ] : t list)

  let sexp_of_t =
    (function
     | Git -> Sexplib0.Sexp.Atom "Git"
     | Hg -> Sexplib0.Sexp.Atom "Hg"
     : t -> Sexplib0.Sexp.t)
  ;;

  [@@@deriving.end]

  let compare = (Stdlib.compare : t -> t -> int)
  let equal = (( = ) : t -> t -> bool)

  [@@@coverage on]

  let seeded_hash = (Hashtbl.seeded_hash : int -> t -> int)
  let hash = (Hashtbl.hash : t -> int)
end

type t =
  { platform : Platform.t
  ; vcs_kind : Vcs_kind.t
  ; user_handle : User_handle.t
  ; repo_name : Repo_name.t
  }
[@@deriving_inline sexp_of]

let sexp_of_t =
  (fun { platform = platform__002_
       ; vcs_kind = vcs_kind__004_
       ; user_handle = user_handle__006_
       ; repo_name = repo_name__008_
       } ->
     let bnds__001_ = ([] : _ Stdlib.List.t) in
     let bnds__001_ =
       let arg__009_ = Repo_name.sexp_of_t repo_name__008_ in
       (Sexplib0.Sexp.List [ Sexplib0.Sexp.Atom "repo_name"; arg__009_ ] :: bnds__001_
        : _ Stdlib.List.t)
     in
     let bnds__001_ =
       let arg__007_ = User_handle.sexp_of_t user_handle__006_ in
       (Sexplib0.Sexp.List [ Sexplib0.Sexp.Atom "user_handle"; arg__007_ ] :: bnds__001_
        : _ Stdlib.List.t)
     in
     let bnds__001_ =
       let arg__005_ = Vcs_kind.sexp_of_t vcs_kind__004_ in
       (Sexplib0.Sexp.List [ Sexplib0.Sexp.Atom "vcs_kind"; arg__005_ ] :: bnds__001_
        : _ Stdlib.List.t)
     in
     let bnds__001_ =
       let arg__003_ = Platform.sexp_of_t platform__002_ in
       (Sexplib0.Sexp.List [ Sexplib0.Sexp.Atom "platform"; arg__003_ ] :: bnds__001_
        : _ Stdlib.List.t)
     in
     Sexplib0.Sexp.List bnds__001_
   : t -> Sexplib0.Sexp.t)
;;

[@@@deriving.end]

let compare = (Stdlib.compare : t -> t -> int)
let equal = (( = ) : t -> t -> bool)
let seeded_hash = (Hashtbl.seeded_hash : int -> t -> int)
let hash = (Hashtbl.hash : t -> int)

module Protocol = struct
  [@@@coverage off]

  type t =
    | Ssh
    | Https
  [@@deriving_inline enumerate, sexp_of]

  let all = ([ Ssh; Https ] : t list)

  let sexp_of_t =
    (function
     | Ssh -> Sexplib0.Sexp.Atom "Ssh"
     | Https -> Sexplib0.Sexp.Atom "Https"
     : t -> Sexplib0.Sexp.t)
  ;;

  [@@@deriving.end]

  let compare = (Stdlib.compare : t -> t -> int)
  let equal = (( = ) : t -> t -> bool)

  [@@@coverage on]

  let seeded_hash = (Hashtbl.seeded_hash : int -> t -> int)
  let hash = (Hashtbl.hash : t -> int)
end

module Ssh_syntax = struct
  type t =
    | Scp_like
    | Url_style
  [@@deriving_inline enumerate, sexp_of]

  let all = ([ Scp_like; Url_style ] : t list)

  let sexp_of_t =
    (function
     | Scp_like -> Sexplib0.Sexp.Atom "Scp_like"
     | Url_style -> Sexplib0.Sexp.Atom "Url_style"
     : t -> Sexplib0.Sexp.t)
  ;;

  [@@@deriving.end]

  let compare = (Stdlib.compare : t -> t -> int)
  let equal = (( = ) : t -> t -> bool)
  let seeded_hash = (Hashtbl.seeded_hash : int -> t -> int)
  let hash = (Hashtbl.hash : t -> int)

  let used_by_default_on_platform ~platform =
    match (platform : Platform.t) with
    | Bitbucket | Codeberg -> Url_style
    | GitHub | GitLab | Sourcehut -> Scp_like
  ;;
end

module Url = struct
  type t =
    { platform : Platform.t
    ; vcs_kind : Vcs_kind.t
    ; user_handle : User_handle.t
    ; repo_name : Repo_name.t
    ; protocol : Protocol.t
    }
  [@@deriving_inline sexp_of]

  let sexp_of_t =
    (fun { platform = platform__011_
         ; vcs_kind = vcs_kind__013_
         ; user_handle = user_handle__015_
         ; repo_name = repo_name__017_
         ; protocol = protocol__019_
         } ->
       let bnds__010_ = ([] : _ Stdlib.List.t) in
       let bnds__010_ =
         let arg__020_ = Protocol.sexp_of_t protocol__019_ in
         (Sexplib0.Sexp.List [ Sexplib0.Sexp.Atom "protocol"; arg__020_ ] :: bnds__010_
          : _ Stdlib.List.t)
       in
       let bnds__010_ =
         let arg__018_ = Repo_name.sexp_of_t repo_name__017_ in
         (Sexplib0.Sexp.List [ Sexplib0.Sexp.Atom "repo_name"; arg__018_ ] :: bnds__010_
          : _ Stdlib.List.t)
       in
       let bnds__010_ =
         let arg__016_ = User_handle.sexp_of_t user_handle__015_ in
         (Sexplib0.Sexp.List [ Sexplib0.Sexp.Atom "user_handle"; arg__016_ ] :: bnds__010_
          : _ Stdlib.List.t)
       in
       let bnds__010_ =
         let arg__014_ = Vcs_kind.sexp_of_t vcs_kind__013_ in
         (Sexplib0.Sexp.List [ Sexplib0.Sexp.Atom "vcs_kind"; arg__014_ ] :: bnds__010_
          : _ Stdlib.List.t)
       in
       let bnds__010_ =
         let arg__012_ = Platform.sexp_of_t platform__011_ in
         (Sexplib0.Sexp.List [ Sexplib0.Sexp.Atom "platform"; arg__012_ ] :: bnds__010_
          : _ Stdlib.List.t)
       in
       Sexplib0.Sexp.List bnds__010_
     : t -> Sexplib0.Sexp.t)
  ;;

  [@@@deriving.end]

  let compare = (Stdlib.compare : t -> t -> int)
  let equal = (( = ) : t -> t -> bool)
  let seeded_hash = (Hashtbl.seeded_hash : int -> t -> int)
  let hash = (Hashtbl.hash : t -> int)

  let domain ~(platform : Platform.t) ~(vcs_kind : Vcs_kind.t) =
    match platform with
    | Bitbucket -> "bitbucket.org"
    | Codeberg -> "codeberg.org"
    | GitHub -> "github.com"
    | GitLab -> "gitlab.com"
    | Sourcehut ->
      (match vcs_kind with
       | Git -> "git.sr.ht"
       | Hg -> "hg.sr.ht")
  ;;

  let prefix_to_string
        ~(platform : Platform.t)
        ~(vcs_kind : Vcs_kind.t)
        ~(protocol : Protocol.t)
        ~(ssh_syntax : Ssh_syntax.t)
    =
    match protocol with
    | Https -> Printf.sprintf "https://%s/" (domain ~platform ~vcs_kind)
    | Ssh ->
      let user =
        match vcs_kind with
        | Git -> "git"
        | Hg -> "hg"
      in
      let user_at = user ^ "@" ^ domain ~platform ~vcs_kind in
      (match ssh_syntax with
       | Scp_like -> user_at ^ ":"
       | Url_style -> "ssh://" ^ user_at ^ "/")
  ;;

  let user_namespace ~user_handle ~platform =
    let user_handle = User_handle.to_string user_handle in
    match (platform : Platform.t) with
    | Bitbucket | Codeberg | GitHub | GitLab -> user_handle
    | Sourcehut -> "~" ^ user_handle
  ;;

  let url_repo_basename ~repo_name ~(vcs_kind : Vcs_kind.t) =
    let repo = Repo_name.to_string repo_name in
    let suffix =
      match vcs_kind with
      | Git -> ".git"
      | Hg -> ""
    in
    repo ^ suffix
  ;;

  let to_string t ~ssh_syntax =
    let { platform; vcs_kind; user_handle; repo_name; protocol } = t in
    let prefix = prefix_to_string ~platform ~vcs_kind ~protocol ~ssh_syntax in
    let user_namespace = user_namespace ~user_handle ~platform in
    let url_repo_basename = url_repo_basename ~repo_name ~vcs_kind in
    Printf.sprintf "%s%s/%s" prefix user_namespace url_repo_basename
  ;;

  let to_url_string t = to_string t ~ssh_syntax:Url_style

  let to_platform_string t =
    to_string t ~ssh_syntax:(Ssh_syntax.used_by_default_on_platform ~platform:t.platform)
  ;;

  let of_string (s : string) : (t, [ `Msg of string ]) Result.t =
    let open Result.Monad_syntax in
    let starts_with_ssh = String.starts_with s ~prefix:"ssh://" in
    let protocols =
      if String.starts_with s ~prefix:"https://"
      then [ Protocol.Https ]
      else if starts_with_ssh
      then [ Protocol.Ssh ]
      else Protocol.all
    in
    let platforms = Platform.all in
    let vcs_kinds = Vcs_kind.all in
    let ssh_syntaxes =
      if starts_with_ssh then [ Ssh_syntax.Url_style ] else [ Ssh_syntax.Scp_like ]
    in
    match
      List.find_map platforms ~f:(fun platform ->
        List.find_map vcs_kinds ~f:(fun vcs_kind ->
          List.find_map protocols ~f:(fun protocol ->
            List.find_map ssh_syntaxes ~f:(fun ssh_syntax ->
              let prefix = prefix_to_string ~platform ~vcs_kind ~protocol ~ssh_syntax in
              Option.map (String.chop_prefix s ~prefix) ~f:(fun rest ->
                platform, vcs_kind, protocol, rest)))))
    with
    | None -> Error (`Msg (Printf.sprintf "%S: invalid url" s))
    | Some (platform, vcs_kind, protocol, rest) ->
      let vcs_kind =
        (* When we would have matched the prefix regardless, we forget about the
           information. *)
        match protocol with
        | Ssh -> vcs_kind
        | Https ->
          (match platform with
           | GitHub | GitLab | Codeberg -> Git
           | Sourcehut -> vcs_kind
           | Bitbucket ->
             (* For bitbucket, since this could be ambiguous, we have to decide
                between requiring the ".git" suffix, or not being able to parse
                hg url. The Sunsetting of Mercurial support in Bitbucket
                happened in 2020. We favor greater compatibility with Git users
                here. Note the library is still able to produce a url for hg
                repo, just not parse one. *)
             Vcs_kind.Git)
      in
      (match
         let* user_handle, rest =
           String.lsplit2 rest ~on:'/' |> Result.of_option ~error:"missing user handle"
         in
         let* user_handle =
           let* user_handle =
             match platform with
             | Sourcehut ->
               String.chop_prefix user_handle ~prefix:"~"
               |> Result.of_option
                    ~error:
                      "User namespace on sourcehut are expected to start with a '~' char."
             | GitHub | GitLab | Bitbucket | Codeberg -> Result.return user_handle
           in
           match User_handle.of_string user_handle with
           | Ok _ as ok -> ok
           | Error (`Msg m) -> Error m
         in
         let* repo_name =
           match String.chop_suffix rest ~suffix:".git" with
           | None -> Ok rest
           | Some repo_name ->
             (match vcs_kind with
              | Git -> Ok repo_name
              | Hg -> Error "Expected a hg repo but has a .git suffix.")
         in
         let* repo_name =
           match Repo_name.of_string repo_name with
           | Ok _ as ok -> ok
           | Error (`Msg m) -> Error m
         in
         Result.return { platform; vcs_kind; user_handle; repo_name; protocol }
       with
       | Ok _ as ok -> ok
       | Error e -> Error (`Msg (Printf.sprintf "%S: invalid url. %s" s e)))
  ;;

  let v str =
    match of_string str with
    | Ok t -> t
    | Error (`Msg m) -> raise (Invalid_argument m)
  ;;
end

let to_url { platform; vcs_kind; user_handle; repo_name } ~protocol =
  { Url.platform; vcs_kind; user_handle; repo_name; protocol }
;;

let of_url { Url.platform; vcs_kind; user_handle; repo_name; protocol = _ } =
  { platform; vcs_kind; user_handle; repo_name }
;;
OCaml

Innovation. Community. Security.