Skip to content

Commit

Permalink
refactor: small improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
metcoder95 committed Sep 21, 2022
1 parent 7bd6182 commit 215dc9a
Showing 1 changed file with 25 additions and 28 deletions.
53 changes: 25 additions & 28 deletions lib/fetch/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,8 @@ function determineRequestsReferrer (request) {
// referrerSource be requests's referrer.
referrerSource = request.referrer
} else {
// If referrerSource is null, then return "no-referrer".
// If referrerSource neither client nor instance of URL
// then return "no-referrer".
return 'no-referrer'
}

Expand All @@ -407,7 +408,7 @@ function determineRequestsReferrer (request) {
// source for use as referrer (using util function, with originOnly true)
// 6. If result of seralizing referrerUrl is a string whose length is greater than
// 4096, then set referrerURL to referrerOrigin
? referrerOrigin = stripURLForReferrer(referrerSource, true)
? (referrerOrigin = stripURLForReferrer(referrerSource, true))
: temp
const areSameOrigin = sameOrigin(request, referrerUrl)
const isNonPotentiallyTrustWorthy = isURLPotentiallyTrustworthy(referrerUrl) &&
Expand All @@ -416,37 +417,38 @@ function determineRequestsReferrer (request) {
// NOTE: How to treat step 7?
// 8. Execute the switch statements corresponding to the value of policy:
switch (policy) {
case 'origin': return referrerOrigin
case 'origin': return referrerOrigin ?? stripURLForReferrer(referrerSource, true)
case 'unsafe-url': return referrerUrl
case 'strict-origin':
/**
* 1. If referrerURL is a potentially trustworthy URL and
* request’s current URL is not a potentially trustworthy URL,
* then return no referrer.
* 2. Return referrerOrigin
*/
return isNonPotentiallyTrustWorthy ? 'no-referrer' : referrerOrigin
case 'strict-origin-when-cross-origin':
/**
* 1. If the origin of referrerURL and the origin of request’s current URL are the same,
* then return referrerURL.
* 2. If referrerURL is a potentially trustworthy URL and request’s current URL is not a
* potentially trustworthy URL, then return no referrer.
* 3. Return referrerOrigin
*/
if (areSameOrigin) return referrerOrigin
else return isNonPotentiallyTrustWorthy ? 'no-referrer' : referrerOrigin
case 'same-origin':
return areSameOrigin ? referrerOrigin : 'no-referrer'
case 'origin-when-cross-origin':
return areSameOrigin ? referrerUrl : referrerOrigin
case 'no-referrer-when-downgrade':
case 'strict-origin-when-cross-origin':
/**
* 1. If the origin of referrerURL and the origin of request’s current URL are the same,
* then return referrerURL.
* 2. If referrerURL is a potentially trustworthy URL and request’s current URL is not a
* potentially trustworthy URL, then return no referrer.
* 3. Return referrerOrigin
*/
if (areSameOrigin) return referrerOrigin
// else return isNonPotentiallyTrustWorthy ? 'no-referrer' : referrerOrigin
case 'strict-origin': // eslint-disable-line
/**
* 1. If referrerURL is a potentially trustworthy URL and
* request’s current URL is not a potentially trustworthy URL,
* then return no referrer.
* 2. Return referrerOrigin
*/
case 'no-referrer-when-downgrade': // eslint-disable-line
/**
* 1. If referrerURL is a potentially trustworthy URL and
* request’s current URL is not a potentially trustworthy URL,
* then return no referrer.
* 2. Return referrerOrigin
*/

default: // eslint-disable-line
return isNonPotentiallyTrustWorthy ? 'no-referrer' : referrerOrigin
}

Expand All @@ -456,12 +458,7 @@ function determineRequestsReferrer (request) {
urlObject.password = ''
urlObject.hash = ''

if (originOnly) {
urlObject.pathname = ''
urlObject.search = ''
}

return urlObject.href
return originOnly ? urlObject.origin : urlObject.href
}
}

Expand Down

0 comments on commit 215dc9a

Please sign in to comment.