Skip to content

Commit 1c9e96f

Browse files
committed
1 parent f13bc9c commit 1c9e96f

File tree

6 files changed

+42
-16
lines changed

6 files changed

+42
-16
lines changed

node_modules/negotiator/HISTORY.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
unreleased
2+
==================
3+
4+
* Added an option preferred encodings array #59
5+
16
0.6.3 / 2022-01-22
27
==================
38

node_modules/negotiator/index.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ Negotiator.prototype.charsets = function charsets(available) {
4444
return preferredCharsets(this.request.headers['accept-charset'], available);
4545
};
4646

47-
Negotiator.prototype.encoding = function encoding(available) {
48-
var set = this.encodings(available);
47+
Negotiator.prototype.encoding = function encoding(available, preferred) {
48+
var set = this.encodings(available, preferred);
4949
return set && set[0];
5050
};
5151

52-
Negotiator.prototype.encodings = function encodings(available) {
53-
return preferredEncodings(this.request.headers['accept-encoding'], available);
52+
Negotiator.prototype.encodings = function encodings(available, preferred) {
53+
return preferredEncodings(this.request.headers['accept-encoding'], available, preferred);
5454
};
5555

5656
Negotiator.prototype.language = function language(available) {

node_modules/negotiator/lib/encoding.js

+26-5
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function parseEncoding(str, i) {
9696
*/
9797

9898
function getEncodingPriority(encoding, accepted, index) {
99-
var priority = {o: -1, q: 0, s: 0};
99+
var priority = {encoding: encoding, o: -1, q: 0, s: 0};
100100

101101
for (var i = 0; i < accepted.length; i++) {
102102
var spec = specify(encoding, accepted[i], index);
@@ -123,6 +123,7 @@ function specify(encoding, spec, index) {
123123
}
124124

125125
return {
126+
encoding: encoding,
126127
i: index,
127128
o: spec.i,
128129
q: spec.q,
@@ -135,14 +136,34 @@ function specify(encoding, spec, index) {
135136
* @public
136137
*/
137138

138-
function preferredEncodings(accept, provided) {
139+
function preferredEncodings(accept, provided, preferred) {
139140
var accepts = parseAcceptEncoding(accept || '');
140141

142+
var comparator = preferred ? function comparator (a, b) {
143+
if (a.q !== b.q) {
144+
return b.q - a.q // higher quality first
145+
}
146+
147+
var aPreferred = preferred.indexOf(a.encoding)
148+
var bPreferred = preferred.indexOf(b.encoding)
149+
150+
if (aPreferred === -1 && bPreferred === -1) {
151+
// consider the original specifity/order
152+
return (b.s - a.s) || (a.o - b.o) || (a.i - b.i)
153+
}
154+
155+
if (aPreferred !== -1 && bPreferred !== -1) {
156+
return aPreferred - bPreferred // consider the preferred order
157+
}
158+
159+
return aPreferred === -1 ? 1 : -1 // preferred first
160+
} : compareSpecs;
161+
141162
if (!provided) {
142163
// sorted list of all encodings
143164
return accepts
144165
.filter(isQuality)
145-
.sort(compareSpecs)
166+
.sort(comparator)
146167
.map(getFullEncoding);
147168
}
148169

@@ -151,7 +172,7 @@ function preferredEncodings(accept, provided) {
151172
});
152173

153174
// sorted list of accepted encodings
154-
return priorities.filter(isQuality).sort(compareSpecs).map(function getEncoding(priority) {
175+
return priorities.filter(isQuality).sort(comparator).map(function getEncoding(priority) {
155176
return provided[priorities.indexOf(priority)];
156177
});
157178
}
@@ -162,7 +183,7 @@ function preferredEncodings(accept, provided) {
162183
*/
163184

164185
function compareSpecs(a, b) {
165-
return (b.q - a.q) || (b.s - a.s) || (a.o - b.o) || (a.i - b.i) || 0;
186+
return (b.q - a.q) || (b.s - a.s) || (a.o - b.o) || (a.i - b.i);
166187
}
167188

168189
/**

node_modules/negotiator/lib/mediaType.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function parseMediaType(str, i) {
6969

7070
// get the value, unwrapping quotes
7171
var value = val && val[0] === '"' && val[val.length - 1] === '"'
72-
? val.substr(1, val.length - 2)
72+
? val.slice(1, -1)
7373
: val;
7474

7575
if (key === 'q') {
@@ -238,8 +238,8 @@ function splitKeyValuePair(str) {
238238
if (index === -1) {
239239
key = str;
240240
} else {
241-
key = str.substr(0, index);
242-
val = str.substr(index + 1);
241+
key = str.slice(0, index);
242+
val = str.slice(index + 1);
243243
}
244244

245245
return [key, val];

node_modules/negotiator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "negotiator",
33
"description": "HTTP content negotiation",
4-
"version": "0.6.3",
4+
"version": "0.6.4",
55
"contributors": [
66
"Douglas Christopher Wilson <[email protected]>",
77
"Federico Romero <[email protected]>",

package-lock.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -11112,9 +11112,9 @@
1111211112
}
1111311113
},
1111411114
"node_modules/negotiator": {
11115-
"version": "0.6.3",
11116-
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
11117-
"integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
11115+
"version": "0.6.4",
11116+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz",
11117+
"integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==",
1111811118
"inBundle": true,
1111911119
"license": "MIT",
1112011120
"engines": {

0 commit comments

Comments
 (0)