-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
2,760 additions
and
16 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
node_modules/init-package-json/node_modules/hosted-git-info/LICENSE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Copyright (c) 2015, Rebecca Turner | ||
|
||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted, provided that the above | ||
copyright notice and this permission notice appear in all copies. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | ||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND | ||
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | ||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | ||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR | ||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | ||
PERFORMANCE OF THIS SOFTWARE. |
185 changes: 185 additions & 0 deletions
185
node_modules/init-package-json/node_modules/hosted-git-info/lib/git-host-info.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
/* eslint-disable max-len */ | ||
'use strict' | ||
const maybeJoin = (...args) => args.every(arg => arg) ? args.join('') : '' | ||
const maybeEncode = (arg) => arg ? encodeURIComponent(arg) : '' | ||
|
||
const defaults = { | ||
sshtemplate: ({ domain, user, project, committish }) => `git@${domain}:${user}/${project}.git${maybeJoin('#', committish)}`, | ||
sshurltemplate: ({ domain, user, project, committish }) => `git+ssh://git@${domain}/${user}/${project}.git${maybeJoin('#', committish)}`, | ||
browsetemplate: ({ domain, user, project, committish, treepath }) => `https://${domain}/${user}/${project}${maybeJoin('/', treepath, '/', maybeEncode(committish))}`, | ||
browsefiletemplate: ({ domain, user, project, committish, treepath, path, fragment, hashformat }) => `https://${domain}/${user}/${project}/${treepath}/${maybeEncode(committish || 'master')}/${path}${maybeJoin('#', hashformat(fragment || ''))}`, | ||
docstemplate: ({ domain, user, project, treepath, committish }) => `https://${domain}/${user}/${project}${maybeJoin('/', treepath, '/', maybeEncode(committish))}#readme`, | ||
httpstemplate: ({ auth, domain, user, project, committish }) => `git+https://${maybeJoin(auth, '@')}${domain}/${user}/${project}.git${maybeJoin('#', committish)}`, | ||
filetemplate: ({ domain, user, project, committish, path }) => `https://${domain}/${user}/${project}/raw/${maybeEncode(committish) || 'master'}/${path}`, | ||
shortcuttemplate: ({ type, user, project, committish }) => `${type}:${user}/${project}${maybeJoin('#', committish)}`, | ||
pathtemplate: ({ user, project, committish }) => `${user}/${project}${maybeJoin('#', committish)}`, | ||
bugstemplate: ({ domain, user, project }) => `https://${domain}/${user}/${project}/issues`, | ||
hashformat: formatHashFragment, | ||
} | ||
|
||
const gitHosts = {} | ||
gitHosts.github = Object.assign({}, defaults, { | ||
// First two are insecure and generally shouldn't be used any more, but | ||
// they are still supported. | ||
protocols: ['git:', 'http:', 'git+ssh:', 'git+https:', 'ssh:', 'https:'], | ||
domain: 'github.com', | ||
treepath: 'tree', | ||
filetemplate: ({ auth, user, project, committish, path }) => `https://${maybeJoin(auth, '@')}raw.githubusercontent.com/${user}/${project}/${maybeEncode(committish) || 'master'}/${path}`, | ||
gittemplate: ({ auth, domain, user, project, committish }) => `git://${maybeJoin(auth, '@')}${domain}/${user}/${project}.git${maybeJoin('#', committish)}`, | ||
tarballtemplate: ({ domain, user, project, committish }) => `https://codeload.${domain}/${user}/${project}/tar.gz/${maybeEncode(committish) || 'master'}`, | ||
extract: (url) => { | ||
let [, user, project, type, committish] = url.pathname.split('/', 5) | ||
if (type && type !== 'tree') { | ||
return | ||
} | ||
|
||
if (!type) { | ||
committish = url.hash.slice(1) | ||
} | ||
|
||
if (project && project.endsWith('.git')) { | ||
project = project.slice(0, -4) | ||
} | ||
|
||
if (!user || !project) { | ||
return | ||
} | ||
|
||
return { user, project, committish } | ||
}, | ||
}) | ||
|
||
gitHosts.bitbucket = Object.assign({}, defaults, { | ||
protocols: ['git+ssh:', 'git+https:', 'ssh:', 'https:'], | ||
domain: 'bitbucket.org', | ||
treepath: 'src', | ||
tarballtemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}/get/${maybeEncode(committish) || 'master'}.tar.gz`, | ||
extract: (url) => { | ||
let [, user, project, aux] = url.pathname.split('/', 4) | ||
if (['get'].includes(aux)) { | ||
return | ||
} | ||
|
||
if (project && project.endsWith('.git')) { | ||
project = project.slice(0, -4) | ||
} | ||
|
||
if (!user || !project) { | ||
return | ||
} | ||
|
||
return { user, project, committish: url.hash.slice(1) } | ||
}, | ||
}) | ||
|
||
gitHosts.gitlab = Object.assign({}, defaults, { | ||
protocols: ['git+ssh:', 'git+https:', 'ssh:', 'https:'], | ||
domain: 'gitlab.com', | ||
treepath: 'tree', | ||
httpstemplate: ({ auth, domain, user, project, committish }) => `git+https://${maybeJoin(auth, '@')}${domain}/${user}/${project}.git${maybeJoin('#', committish)}`, | ||
tarballtemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}/repository/archive.tar.gz?ref=${maybeEncode(committish) || 'master'}`, | ||
extract: (url) => { | ||
const path = url.pathname.slice(1) | ||
if (path.includes('/-/') || path.includes('/archive.tar.gz')) { | ||
return | ||
} | ||
|
||
const segments = path.split('/') | ||
let project = segments.pop() | ||
if (project.endsWith('.git')) { | ||
project = project.slice(0, -4) | ||
} | ||
|
||
const user = segments.join('/') | ||
if (!user || !project) { | ||
return | ||
} | ||
|
||
return { user, project, committish: url.hash.slice(1) } | ||
}, | ||
}) | ||
|
||
gitHosts.gist = Object.assign({}, defaults, { | ||
protocols: ['git:', 'git+ssh:', 'git+https:', 'ssh:', 'https:'], | ||
domain: 'gist.github.com', | ||
sshtemplate: ({ domain, project, committish }) => `git@${domain}:${project}.git${maybeJoin('#', committish)}`, | ||
sshurltemplate: ({ domain, project, committish }) => `git+ssh://git@${domain}/${project}.git${maybeJoin('#', committish)}`, | ||
browsetemplate: ({ domain, project, committish }) => `https://${domain}/${project}${maybeJoin('/', maybeEncode(committish))}`, | ||
browsefiletemplate: ({ domain, project, committish, path, hashformat }) => `https://${domain}/${project}${maybeJoin('/', maybeEncode(committish))}${maybeJoin('#', hashformat(path))}`, | ||
docstemplate: ({ domain, project, committish }) => `https://${domain}/${project}${maybeJoin('/', maybeEncode(committish))}`, | ||
httpstemplate: ({ domain, project, committish }) => `git+https://${domain}/${project}.git${maybeJoin('#', committish)}`, | ||
filetemplate: ({ user, project, committish, path }) => `https://gist.githubusercontent.com/${user}/${project}/raw${maybeJoin('/', maybeEncode(committish))}/${path}`, | ||
shortcuttemplate: ({ type, project, committish }) => `${type}:${project}${maybeJoin('#', committish)}`, | ||
pathtemplate: ({ project, committish }) => `${project}${maybeJoin('#', committish)}`, | ||
bugstemplate: ({ domain, project }) => `https://${domain}/${project}`, | ||
gittemplate: ({ domain, project, committish }) => `git://${domain}/${project}.git${maybeJoin('#', committish)}`, | ||
tarballtemplate: ({ project, committish }) => `https://codeload.github.com/gist/${project}/tar.gz/${maybeEncode(committish) || 'master'}`, | ||
extract: (url) => { | ||
let [, user, project, aux] = url.pathname.split('/', 4) | ||
if (aux === 'raw') { | ||
return | ||
} | ||
|
||
if (!project) { | ||
if (!user) { | ||
return | ||
} | ||
|
||
project = user | ||
user = null | ||
} | ||
|
||
if (project.endsWith('.git')) { | ||
project = project.slice(0, -4) | ||
} | ||
|
||
return { user, project, committish: url.hash.slice(1) } | ||
}, | ||
hashformat: function (fragment) { | ||
return fragment && 'file-' + formatHashFragment(fragment) | ||
}, | ||
}) | ||
|
||
gitHosts.sourcehut = Object.assign({}, defaults, { | ||
protocols: ['git+ssh:', 'https:'], | ||
domain: 'git.sr.ht', | ||
treepath: 'tree', | ||
browsefiletemplate: ({ domain, user, project, committish, treepath, path, fragment, hashformat }) => `https://${domain}/${user}/${project}/${treepath}/${maybeEncode(committish || 'main')}/${path}${maybeJoin('#', hashformat(fragment || ''))}`, | ||
filetemplate: ({ domain, user, project, committish, path }) => `https://${domain}/${user}/${project}/blob/${maybeEncode(committish) || 'main'}/${path}`, | ||
httpstemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}.git${maybeJoin('#', committish)}`, | ||
tarballtemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}/archive/${maybeEncode(committish) || 'main'}.tar.gz`, | ||
bugstemplate: ({ domain, user, project }) => `https://todo.sr.ht/${user}/${project}`, | ||
docstemplate: ({ domain, user, project, treepath, committish }) => `https://${domain}/${user}/${project}${maybeJoin('/', treepath, '/', maybeEncode(committish))}#readme`, | ||
extract: (url) => { | ||
let [, user, project, aux] = url.pathname.split('/', 4) | ||
|
||
// tarball url | ||
if (['archive'].includes(aux)) { | ||
return | ||
} | ||
|
||
if (project && project.endsWith('.git')) { | ||
project = project.slice(0, -4) | ||
} | ||
|
||
if (!user || !project) { | ||
return | ||
} | ||
|
||
return { user, project, committish: url.hash.slice(1) } | ||
}, | ||
}) | ||
|
||
const names = Object.keys(gitHosts) | ||
gitHosts.byShortcut = {} | ||
gitHosts.byDomain = {} | ||
for (const name of names) { | ||
gitHosts.byShortcut[`${name}:`] = name | ||
gitHosts.byDomain[gitHosts[name].domain] = name | ||
} | ||
|
||
function formatHashFragment (fragment) { | ||
return fragment.toLowerCase().replace(/^\W+|\/|\W+$/g, '').replace(/\W+/g, '-') | ||
} | ||
|
||
module.exports = gitHosts |
110 changes: 110 additions & 0 deletions
110
node_modules/init-package-json/node_modules/hosted-git-info/lib/git-host.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 |
Oops, something went wrong.