15815213711
2024-08-26 67b8b6731811983447e053d4396b3708c14dfe3c
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
'use strict'
const gitHosts = require('./git-host-info.js')
 
class GitHost {
  constructor (type, user, auth, project, committish, defaultRepresentation, opts = {}) {
    Object.assign(this, gitHosts[type])
    this.type = type
    this.user = user
    this.auth = auth
    this.project = project
    this.committish = committish
    this.default = defaultRepresentation
    this.opts = opts
  }
 
  hash () {
    return this.committish ? `#${this.committish}` : ''
  }
 
  ssh (opts) {
    return this._fill(this.sshtemplate, opts)
  }
 
  _fill (template, opts) {
    if (typeof template === 'function') {
      const options = { ...this, ...this.opts, ...opts }
 
      // the path should always be set so we don't end up with 'undefined' in urls
      if (!options.path) {
        options.path = ''
      }
 
      // template functions will insert the leading slash themselves
      if (options.path.startsWith('/')) {
        options.path = options.path.slice(1)
      }
 
      if (options.noCommittish) {
        options.committish = null
      }
 
      const result = template(options)
      return options.noGitPlus && result.startsWith('git+') ? result.slice(4) : result
    }
 
    return null
  }
 
  sshurl (opts) {
    return this._fill(this.sshurltemplate, opts)
  }
 
  browse (path, fragment, opts) {
    // not a string, treat path as opts
    if (typeof path !== 'string') {
      return this._fill(this.browsetemplate, path)
    }
 
    if (typeof fragment !== 'string') {
      opts = fragment
      fragment = null
    }
    return this._fill(this.browsefiletemplate, { ...opts, fragment, path })
  }
 
  docs (opts) {
    return this._fill(this.docstemplate, opts)
  }
 
  bugs (opts) {
    return this._fill(this.bugstemplate, opts)
  }
 
  https (opts) {
    return this._fill(this.httpstemplate, opts)
  }
 
  git (opts) {
    return this._fill(this.gittemplate, opts)
  }
 
  shortcut (opts) {
    return this._fill(this.shortcuttemplate, opts)
  }
 
  path (opts) {
    return this._fill(this.pathtemplate, opts)
  }
 
  tarball (opts) {
    return this._fill(this.tarballtemplate, { ...opts, noCommittish: false })
  }
 
  file (path, opts) {
    return this._fill(this.filetemplate, { ...opts, path })
  }
 
  getDefaultRepresentation () {
    return this.default
  }
 
  toString (opts) {
    if (this.default && typeof this[this.default] === 'function') {
      return this[this.default](opts)
    }
 
    return this.sshurl(opts)
  }
}
module.exports = GitHost