Description
Support Link Response fields in GetRemote Result object
Issue
Different APIs use different Response-Header fields to return additional data about the Response.
Especially paginating REST APIs (GitHub, GitLab guess there are many) used in combination with GetRemote are affected.
Hugo currently only provides access to the Content-Type filed through it's Data Interface in
resource Object returned from GetRemote
I would like to have see the Link Header fields for Pagination at the resource.
- start
- first
- next
- prev(ious)
- last
- self
Link Response Header Field (RFC 5988)
RFC has a complete grammar in section 5
Just the key points for the stuff used in pagination here:
Link = "Link" ":" #link-value
link-value = "<" URI-Reference ">" *( ";" link-param )
link-param = ( "rel" "=" relation-types ) <-- the are more keywords than "rel" and more types
relation-types = relation-type
| <"> relation-type *( 1*SP relation-type ) <">
relation types are defined in
section 622
commonly used types are
- self - the link to the page itself
- help - usually links to the api documentation
- stylesheet - for XML delivery or transformation
- start - slighty different definition than first (non native speaker) - and there is no end type
;-)
So we have multiple types in a rel field that may link to the same Url. And two different types
for the same (prev and previous) Hurray.
Example from GitHub
This is a one line string, newlines added for readability
Link: <https://api.github.com/repositories/11180687/issues?page=1&per_page=2>; rel="prev", <https://api.github.com/repositories/11180687/issues?page=3&per_page=2>; rel="next" <https://api.github.com/repositories/11180687/issues?page=233&per_page=2>; rel="last", <https://api.github.com/repositories/11180687/issues?page=1&per_page=2>; rel="first" <https://www.example.com; rel="self"> <https://www.example.com; rel="self stylesheet">
Implementation thoughts
Implementation effort varies on the degree of Link attribute support
- only rel=
1.2 all types
1.3 list of types (minimal: next,prev(ios),first,last,start)
2 complete Link RFC
3 all or some other Headers
I would vote for 1.2 maybe 1.1 so it's full supported. Guess you have some Go libraries already in
use. The grammar for the Link attribute seems to regex capture handlebar.
Easy access
should be dead simple $resource.Links.First $resource.Links "first" ... no puzzling around with
walking a structure or index function.
Should not fail
If the link cannot be parsed completely it should not fail but store it in a String representation
maybe Resource.Header.LinkRaw ...
Field that may be worth adding
- Content-Language might be interesting, so one can handle the process according to Hugo site
languages.
Further considerations
For simplicity all fields exposed are directly available at the .Data field.
Could be moved to a .Data.Header storing the Response headers. Just one field currently for the
Response-Header, so a deprecation now and duplicate/link it to .Data.Headers. or an interface,
getter ... i'm not in Go. The new link Field might be widely used because of paginating APIs
utilized with GetRemote and Content Adapters. imho if there should be a change, early is better ;-)
Dunno if these will be a conflict candidate later but at lest a point to consider