Last active
July 25, 2019 11:34
-
-
Save deiu/9335803 to your computer and use it in GitHub Desktop.
Parse HTTP Link header in Javascript
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
// parse a Link header | |
// | |
// Link:<https://example.org/.meta>; rel=meta | |
// | |
// var r = parseLinkHeader(xhr.getResponseHeader('Link'); | |
// r['meta'] outputs https://example.org/.meta | |
// | |
function parseLinkHeader(header) { | |
var linkexp = /<[^>]*>\s*(\s*;\s*[^\(\)<>@,;:"\/\[\]\?={} \t]+=(([^\(\)<>@,;:"\/\[\]\?={} \t]+)|("[^"]*")))*(,|$)/g; | |
var paramexp = /[^\(\)<>@,;:"\/\[\]\?={} \t]+=(([^\(\)<>@,;:"\/\[\]\?={} \t]+)|("[^"]*"))/g; | |
var matches = link.match(linkexp); | |
var rels = {}; | |
for (var i = 0; i < matches.length; i++) { | |
var split = matches[i].split('>'); | |
var href = split[0].substring(1); | |
var ps = split[1]; | |
var s = ps.match(paramexp); | |
for (var j = 0; j < s.length; j++) { | |
var p = s[j]; | |
var paramsplit = p.split('='); | |
var name = paramsplit[0]; | |
var rel = paramsplit[1].replace(/["']/g, ''); | |
rels[rel] = href; | |
} | |
} | |
return rels; | |
} |
Thank you. I've fixed the example (albeit late).
What's the license for this gist?
It's MIT.
A quick and tiny fix:
function parseLinkHeader(header)
shoud read
function parseLinkHeader(link)
Besides this it works like a charm! 🎉
Thanks for the Gist!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you very much for sharing this!
Just a small remark:
In lines 20 and 27 the variables
i
andj
are not declared before they are used. Hence, they are leaked into the global scope.I would write
for (var i = 0; i < matches.length; i++) {
(notice thevar
keyword)