micro/web/web.go

46 lines
977 B
Go
Raw Normal View History

2019-06-03 21:30:43 +03:00
// Package web provides web based micro services
package web
import (
"context"
2019-06-03 21:30:43 +03:00
"net/http"
"time"
"github.com/google/uuid"
)
// Service is a web service with service discovery built in
type Service interface {
Client() *http.Client
Init(opts ...Option) error
Options() Options
Handle(pattern string, handler http.Handler)
HandleFunc(pattern string, handler func(http.ResponseWriter, *http.Request))
Run() error
}
//Option for web
2019-06-03 21:30:43 +03:00
type Option func(o *Options)
//Web basic Defaults
2019-06-03 21:30:43 +03:00
var (
// For serving
DefaultName = "go-web"
DefaultVersion = "latest"
DefaultId = uuid.New().String()
DefaultAddress = ":0"
// for registration
DefaultRegisterTTL = time.Second * 90
2019-06-03 21:30:43 +03:00
DefaultRegisterInterval = time.Second * 30
// static directory
DefaultStaticDir = "html"
DefaultRegisterCheck = func(context.Context) error { return nil }
2019-06-03 21:30:43 +03:00
)
// NewService returns a new web.Service
func NewService(opts ...Option) Service {
return newService(opts...)
}