Add ghost backend get-page-by-slug request

pull/1/head
Nikita Tokarchuk 2 years ago
parent ea9d93443f
commit 7fbb921516
Signed by: mainnika
GPG Key ID: A595FB7E3E56911C
  1. 17
      frontend/ghost/client.go

@ -10,7 +10,8 @@ import (
)
// Ghost content data URIs:
const (
ghostAPIPrefix = "/ghost/api/v3/"
ghostAPIPrefix = "/ghost/api/v3/"
ghostAPIGetPageBySlug = ghostAPIPrefix + "content/pages/slug/%s/"
)
// HTTPClient implements the ghost http client
@ -80,5 +81,19 @@ func (g *HTTPClient) doQuery(method string, v easyjson.Unmarshaler, params ...Qu
err = easyjson.Unmarshal(resBytes, v)
return
}
// GetPageBySlug returns the only one page using slug filter
func (g *HTTPClient) GetPageBySlug(slug string) (pages *Pages, err error) {
pages = &Pages{}
method := fmt.Sprintf(ghostAPIGetPageBySlug, slug)
err = g.doQuery(method, pages)
if err != nil {
pages = nil
}
return
}
Loading…
Cancel
Save