api

package
v0.0.0-...-91abe7c Latest Latest
Warning

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

Go to latest
Published: May 28, 2020 License: Apache-2.0 Imports: 19 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidRequest = errors.New("Invalid request")
)
View Source
var (
	ErrUnauthorized = errors.New("Unauthorized")
)

Functions

func MakeAddressGetEndpoint

func MakeAddressGetEndpoint(s Service) endpoint.Endpoint

MakeAddressGetEndpoint returns an endpoint via the given service.

func MakeAddressPostEndpoint

func MakeAddressPostEndpoint(s Service) endpoint.Endpoint

MakeAddressPostEndpoint returns an endpoint via the given service.

func MakeCardGetEndpoint

func MakeCardGetEndpoint(s Service) endpoint.Endpoint

MakeUserGetEndpoint returns an endpoint via the given service.

func MakeCardPostEndpoint

func MakeCardPostEndpoint(s Service) endpoint.Endpoint

MakeCardPostEndpoint returns an endpoint via the given service.

func MakeDeleteEndpoint

func MakeDeleteEndpoint(s Service) endpoint.Endpoint

MakeLoginEndpoint returns an endpoint via the given service.

func MakeHTTPHandler

func MakeHTTPHandler(e Endpoints, logger log.Logger, tracer stdopentracing.Tracer) *mux.Router

MakeHTTPHandler mounts the endpoints into a REST-y HTTP handler.

func MakeHealthEndpoint

func MakeHealthEndpoint(s Service) endpoint.Endpoint

MakeHealthEndpoint returns current health of the given service.

func MakeLoginEndpoint

func MakeLoginEndpoint(s Service) endpoint.Endpoint

MakeLoginEndpoint returns an endpoint via the given service.

func MakeRegisterEndpoint

func MakeRegisterEndpoint(s Service) endpoint.Endpoint

MakeRegisterEndpoint returns an endpoint via the given service.

func MakeUserGetEndpoint

func MakeUserGetEndpoint(s Service) endpoint.Endpoint

MakeUserGetEndpoint returns an endpoint via the given service.

func MakeUserPostEndpoint

func MakeUserPostEndpoint(s Service) endpoint.Endpoint

MakeUserPostEndpoint returns an endpoint via the given service.

Types

type EmbedStruct

type EmbedStruct struct {
	Embed interface{} `json:"_embedded"`
}

type Endpoints

type Endpoints struct {
	LoginEndpoint       endpoint.Endpoint
	RegisterEndpoint    endpoint.Endpoint
	UserGetEndpoint     endpoint.Endpoint
	UserPostEndpoint    endpoint.Endpoint
	AddressGetEndpoint  endpoint.Endpoint
	AddressPostEndpoint endpoint.Endpoint
	CardGetEndpoint     endpoint.Endpoint
	CardPostEndpoint    endpoint.Endpoint
	DeleteEndpoint      endpoint.Endpoint
	HealthEndpoint      endpoint.Endpoint
}

Endpoints collects the endpoints that comprise the Service.

func MakeEndpoints

func MakeEndpoints(s Service, tracer stdopentracing.Tracer) Endpoints

MakeEndpoints returns an Endpoints structure, where each endpoint is backed by the given service.

type GetRequest

type GetRequest struct {
	ID   string
	Attr string
}

type Health

type Health struct {
	Service string `json:"service"`
	Status  string `json:"status"`
	Time    string `json:"time"`
}

type Middleware

type Middleware func(Service) Service

Middleware decorates a service.

func LoggingMiddleware

func LoggingMiddleware(logger log.Logger) Middleware

LoggingMiddleware logs method calls, parameters, results, and elapsed time.

type Service

type Service interface {
	Login(username, password string) (users.User, error) // GET /login
	Register(username, password, email, first, last string) (string, error)
	GetUsers(id string) ([]users.User, error)
	PostUser(u users.User) (string, error)
	GetAddresses(id string) ([]users.Address, error)
	PostAddress(u users.Address, userid string) (string, error)
	GetCards(id string) ([]users.Card, error)
	PostCard(u users.Card, userid string) (string, error)
	Delete(entity, id string) error
	Health() []Health // GET /health
}

Service is the user service, providing operations for users to login, register, and retrieve customer information.

func NewFixedService

func NewFixedService() Service

NewFixedService returns a simple implementation of the Service interface,

func NewInstrumentingService

func NewInstrumentingService(requestCount metrics.Counter, requestLatency metrics.Histogram, s Service) Service

NewInstrumentingService returns an instance of an instrumenting Service.

Jump to

Keyboard shortcuts

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