sdk

package
v1.43.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 7, 2024 License: MIT Imports: 15 Imported by: 3

README

dp-search-api SDK

Overview

The search API contains a Go client for interacting with the API. The client contains a methods for each API endpoint so that any Go application wanting to interact with the search api can do so. Please refer to the swagger specification as the source of truth of how each endpoint works.

Example use of the API SDK

Initialise new Search API client

package main

import (
	"context"
	"github.com/ONSdigital/dp-search-api/sdk"
)

func main() {
    ...
	searchAPIClient := sdk.NewClient("http://localhost:23900")
    ...
}
Create Index

Use the CreateIndex method to send a request to generate a new search index. This is a private endpoint and requires authorisation header.

...
    // Set authorisation header
    headers := make(map[header][]string)
	headers[Authorisation] = []string{"Bearer authorised-user"}

    resp, err := searchAPIClient.CreateIndex(ctx, sdk.Options{sdk.Headers: headers})
    if err != nil {
        // handle error
    }

    /* If successdul the resp value will be *CreateIndexResponse struct found in github.com/ONSdigital/dp-search-api/models package

    JSON equivalent:
    {
        "index_name": <value>,
    }
    */
...
Get Search Results

Use the GetSearch method to send a request to find search results based on query parameters. Authorisation header needed if hitting private instance of application.

...
    // Set query parameters - no limit to which keys and values you set - please refer to swagger spec for list of available parameters
    query := url.Values{}
    query.Add("q", "census")

    resp, err := searchAPIClient.GetSearch(ctx, sdk.Options{sdk.Query: query})
    if err != nil {
        // handle error
    }
...
Get Release Calendar Entires

Use the GetReleaseCalendarEntries method to send a request to find release calendar entries based on query parameters. Authorisation header needed if hitting private instance of application.

...
    // Set query parameters - no limit to which keys and values you set - please refer to swagger spec for list of available parameters
    query := url.Values{}
    query.Add("q", "census")

    resp, err := searchAPIClient.GetReleaseCalendarEntries(ctx, sdk.Options{sdk.Query: query})
    if err != nil {
        // handle error
    }
...
Handling errors

The error returned from the method contains status code that can be accessed via Status() method and similar to extracting the error message using Error() method; see snippet below:

...
    _, err := searchAPIClient.GetSearch(ctx, Options{})
    if err != nil {
        // Retrieve status code from error
        statusCode := err.Status()
        // Retrieve error message from error
        errorMessage := err.Error()

        // log message, below uses "github.com/ONSdigital/log.go/v2/log" package
        log.Error(ctx, "failed to retrieve search results", err, log.Data{"code": statusCode})

        return err
    }
...

Documentation

Index

Constants

View Source
const (
	// List of available headers
	Authorization string = request.AuthHeaderKey
	CollectionID  string = request.CollectionIDHeaderKey
	FlorenceToken string = request.FlorenceHeaderKey
)

Variables

View Source
var (

	// ErrGetPermissionsResponseBodyNil error used when a nil response is returned from the permissions API.
	ErrGetPermissionsResponseBodyNil = errors.New("error creating get permissions request http.Request required but was nil")
)

Functions

This section is empty.

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

func New

func New(searchAPIURL string) *Client

New creates a new instance of Client with a given search api url

func NewWithHealthClient

func NewWithHealthClient(hcCli *healthcheck.Client) *Client

NewWithHealthClient creates a new instance of search API Client, reusing the URL and Clienter from the provided healthcheck client

func (*Client) Checker

func (cli *Client) Checker(ctx context.Context, check *health.CheckState) error

Checker calls search api health endpoint and returns a check object to the caller

func (*Client) CreateIndex

func (cli *Client) CreateIndex(ctx context.Context, options Options) (*models.CreateIndexResponse, apiError.Error)

PostSearch creates a new search index

func (*Client) GetReleaseCalendarEntries

func (cli *Client) GetReleaseCalendarEntries(ctx context.Context, options Options) (*transformer.SearchReleaseResponse, apiError.Error)

GetReleaseCalendarEntries gets a list of release calendar entries based on the search request

func (*Client) GetSearch

func (cli *Client) GetSearch(ctx context.Context, options Options) (*models.SearchResponse, apiError.Error)

GetSearch gets a list of search results based on the search request

func (*Client) Health

func (cli *Client) Health() *healthcheck.Client

Health returns the underlying Healthcheck Client for this search API client

func (*Client) URL

func (cli *Client) URL() string

URL returns the URL used by this client

type Clienter

type Clienter interface {
	Checker(ctx context.Context, check *health.CheckState) error
	CreateIndex(ctx context.Context, options Options) (*models.CreateIndexResponse, apiError.Error)
	GetReleaseCalendarEntries(ctx context.Context, options Options) (*transformer.SearchReleaseResponse, apiError.Error)
	GetSearch(ctx context.Context, options Options) (*models.SearchResponse, apiError.Error)
	Health() *healthcheck.Client
	URL() string
}

type Options

type Options struct {
	Headers http.Header
	Query   url.Values
}

Options is a struct containing for customised options for the API client

func (*Options) Census added in v1.36.0

func (o *Options) Census(val string) *Options

Census sets the 'census' Query parameter to the request

func (*Options) ContentType added in v1.36.0

func (o *Options) ContentType(val string) *Options

ContentType sets the 'content_type' Query parameter to the request

func (*Options) Dimensions added in v1.36.0

func (o *Options) Dimensions(val string) *Options

Dimensions sets the 'dimensions' Query parameter to the request

func (*Options) Highlight added in v1.36.0

func (o *Options) Highlight(val string) *Options

Highlight sets the 'highlight' Query parameter to the request

func (*Options) Limit added in v1.36.0

func (o *Options) Limit(val string) *Options

Limit sets the 'limit' Query parameter to the request

func (*Options) NLPWeighting added in v1.43.0

func (o *Options) NLPWeighting(val string) *Options

NLPWeighting sets the 'census' Query parameter to the request

func (*Options) Offset added in v1.36.0

func (o *Options) Offset(val string) *Options

Offset sets the 'offset' Query parameter to the request

func (*Options) PopulationTypes added in v1.36.0

func (o *Options) PopulationTypes(val string) *Options

PopulationTypes sets the 'population_types' Query parameter to the request

func (*Options) Q added in v1.36.0

func (o *Options) Q(val string) *Options

Q sets the 'q' Query parameter to the request

func (*Options) Sort added in v1.36.0

func (o *Options) Sort(val string) *Options

Sort sets the 'sort' Query parameter to the request

func (*Options) SubtypeConfirmed added in v1.36.0

func (o *Options) SubtypeConfirmed(val string) *Options

SubtypeConfirmed sets the 'subtype-confirmed' Query parameter to the request

func (*Options) SubtypePostponed added in v1.36.0

func (o *Options) SubtypePostponed(val string) *Options

SubtypePostponed sets the 'subtype-postponed' Query parameter to the request

func (*Options) SubtypeProvisional added in v1.36.0

func (o *Options) SubtypeProvisional(val string) *Options

SubtypeProvisional sets the 'subtype-provisional' Query parameter to the request

func (*Options) Topics added in v1.36.0

func (o *Options) Topics(val string) *Options

Topics sets the 'topics' Query parameter to the request

type ResponseInfo

type ResponseInfo struct {
	Body    []byte
	Headers http.Header
	Status  int
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL