Skip to content

Commit

Permalink
Throw if url is invalid. Add a length limit.
Browse files Browse the repository at this point in the history
  • Loading branch information
IonicaBizau committed Aug 3, 2022
1 parent e4968ff commit b88c81d
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 13 deletions.
20 changes: 17 additions & 3 deletions lib/index.js
Expand Up @@ -32,18 +32,27 @@ import normalizeUrl from "normalize-url";
* - `search` (String): The url querystring value.
* - `href` (String): The input url.
* - `query` (Object): The url querystring, parsed as object.
* - `parse_failed` (Boolean): Whether the parsing failed or not.
*/
const parseUrl = (url, normalize = false) => {

// Constants
const GIT_RE = /(^(git@|http(s)?:\/\/)([\w\.\-@]+)(\/|:))(([\~,\.\w,\-,\_,\/]+)(.git){0,1}((\/){0,1}))/

if (typeof url !== "string" || !url.trim()) {
const err = new Error("Invalid url.")
const throwErr = msg => {
const err = new Error(msg)
err.subject_url = url
throw err
}

if (typeof url !== "string" || !url.trim()) {
throwErr("Invalid url.")
}

if (url.length > parseUrl.MAX_INPUT_LENGTH) {
throwErr("Input exceeds maximum length. If needed, change the value of parseUrl.MAX_INPUT_LENGTH.")
}

if (normalize) {
if (typeof normalize !== "object") {
normalize = {
Expand All @@ -56,7 +65,7 @@ const parseUrl = (url, normalize = false) => {
const parsed = parsePath(url)

// Potential git-ssh urls
if (parsed.protocol === "file") {
if (parsed.parse_failed) {
const matched = parsed.href.match(GIT_RE)
if (matched) {
parsed.protocols = ["ssh"]
Expand All @@ -65,10 +74,15 @@ const parseUrl = (url, normalize = false) => {
parsed.host = matched[4]
parsed.user = "git"
parsed.pathname = `/${matched[6]}`
parsed.parse_failed = false
} else {
throwErr("URL parsing failed.")
}
}

return parsed;
}

parseUrl.MAX_INPUT_LENGTH = 2048

export default parseUrl;
42 changes: 32 additions & 10 deletions test/index.js
Expand Up @@ -17,6 +17,7 @@ const INPUTS = [
, hash: ""
, search: ""
, query: {}
, parse_failed: false
}
]
, [
Expand All @@ -32,6 +33,7 @@ const INPUTS = [
, hash: ""
, search: ""
, query: {}
, parse_failed: false
}
]
, [
Expand All @@ -47,6 +49,7 @@ const INPUTS = [
, hash: "some-hash?foo=bar"
, search: ""
, query: {}
, parse_failed: false
}
]
, [
Expand All @@ -62,6 +65,7 @@ const INPUTS = [
, hash: ""
, search: ""
, query: {}
, parse_failed: false
}
]
, [
Expand All @@ -77,6 +81,7 @@ const INPUTS = [
, hash: ""
, search: ""
, query: {}
, parse_failed: false
}
]
, [
Expand All @@ -92,6 +97,7 @@ const INPUTS = [
, hash: ""
, search: ""
, query: {}
, parse_failed: false
}
]
, [
Expand All @@ -107,22 +113,24 @@ const INPUTS = [
, hash: "http://a:1:1"
, search: ""
, query: {}
, parse_failed: false
}
]
, [
["git@github.my-enterprise.com:my-org/my-repo.git", false],
{
protocols: [ 'ssh' ]
, protocol: 'ssh'
, port: ''
, resource: 'github.my-enterprise.com'
, host: 'github.my-enterprise.com'
, user: 'git'
, password: ''
, pathname: '/my-org/my-repo.git'
, hash: ''
, search: ''
, query: {}
, protocol: 'ssh'
, port: ''
, resource: 'github.my-enterprise.com'
, host: 'github.my-enterprise.com'
, user: 'git'
, password: ''
, pathname: '/my-org/my-repo.git'
, hash: ''
, search: ''
, query: {}
, parse_failed: false
}
]
, [
Expand All @@ -138,6 +146,7 @@ const INPUTS = [
, hash: ""
, search: ""
, query: {}
, parse_failed: false
}
]
];
Expand Down Expand Up @@ -165,4 +174,17 @@ tester.describe("check urls", test => {
parseUrl("")
}).toThrow(/invalid url/i)
})

test.should("throw if url is too long", () => {
parseUrl.MAX_INPUT_LENGTH = 10
test.expect(() => {
parseUrl("https://domain.com/")
}).toThrow(/input exceeds maximum length/i)
})

test.should("throw if url is invalid", () => {
test.expect(() => {
parseUrl("foo")
}).toThrow(/url parsing failed/i)
})
});

0 comments on commit b88c81d

Please sign in to comment.