2017-04-11 21:53:58 +01:00
|
|
|
import Link from 'http-link-header';
|
|
|
|
import querystring from 'querystring';
|
|
|
|
|
|
|
|
Link.parseAttrs = (link, parts) => {
|
2017-05-20 16:31:47 +01:00
|
|
|
let match = null;
|
|
|
|
let attr = '';
|
|
|
|
let value = '';
|
|
|
|
let attrs = '';
|
2017-04-11 21:53:58 +01:00
|
|
|
|
2017-05-20 16:31:47 +01:00
|
|
|
let uriAttrs = /<(.*)>;\s*(.*)/gi.exec(parts);
|
2017-04-11 21:53:58 +01:00
|
|
|
|
|
|
|
if(uriAttrs) {
|
2017-05-20 16:31:47 +01:00
|
|
|
attrs = uriAttrs[2];
|
|
|
|
link = Link.parseParams(link, uriAttrs[1]);
|
2017-04-11 21:53:58 +01:00
|
|
|
}
|
|
|
|
|
2017-04-15 12:27:27 +01:00
|
|
|
while(match = Link.attrPattern.exec(attrs)) { // eslint-disable-line no-cond-assign
|
2017-05-20 16:31:47 +01:00
|
|
|
attr = match[1].toLowerCase();
|
|
|
|
value = match[4] || match[3] || match[2];
|
2017-04-11 21:53:58 +01:00
|
|
|
|
|
|
|
if( /\*$/.test(attr)) {
|
2017-05-20 16:31:47 +01:00
|
|
|
Link.setAttr(link, attr, Link.parseExtendedValue(value));
|
2017-04-11 21:53:58 +01:00
|
|
|
} else if(/%/.test(value)) {
|
2017-05-20 16:31:47 +01:00
|
|
|
Link.setAttr(link, attr, querystring.decode(value));
|
2017-04-11 21:53:58 +01:00
|
|
|
} else {
|
2017-05-20 16:31:47 +01:00
|
|
|
Link.setAttr(link, attr, value);
|
2017-04-11 21:53:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-20 16:31:47 +01:00
|
|
|
return link;
|
2017-04-11 21:53:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Link;
|