98 lines
2.4 KiB
Go
98 lines
2.4 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
kitprometheus "github.com/go-kit/kit/metrics/prometheus"
|
|
"github.com/mainflux/mainflux"
|
|
adapter "github.com/mainflux/mainflux/http"
|
|
"github.com/mainflux/mainflux/http/api"
|
|
"github.com/mainflux/mainflux/http/nats"
|
|
log "github.com/mainflux/mainflux/logger"
|
|
thingsapi "github.com/mainflux/mainflux/things/api/grpc"
|
|
broker "github.com/nats-io/go-nats"
|
|
stdprometheus "github.com/prometheus/client_golang/prometheus"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
const (
|
|
defPort string = "8180"
|
|
defNatsURL string = broker.DefaultURL
|
|
defThingsURL string = "localhost:8181"
|
|
envPort string = "MF_HTTP_ADAPTER_PORT"
|
|
envNatsURL string = "MF_NATS_URL"
|
|
envThingsURL string = "MF_THINGS_URL"
|
|
)
|
|
|
|
type config struct {
|
|
ThingsURL string
|
|
NatsURL string
|
|
Port string
|
|
}
|
|
|
|
func main() {
|
|
cfg := config{
|
|
ThingsURL: mainflux.Env(envThingsURL, defThingsURL),
|
|
NatsURL: mainflux.Env(envNatsURL, defNatsURL),
|
|
Port: mainflux.Env(envPort, defPort),
|
|
}
|
|
|
|
logger := log.New(os.Stdout)
|
|
|
|
nc, err := broker.Connect(cfg.NatsURL)
|
|
if err != nil {
|
|
logger.Error(fmt.Sprintf("Failed to connect to NATS: %s", err))
|
|
os.Exit(1)
|
|
}
|
|
defer nc.Close()
|
|
|
|
conn, err := grpc.Dial(cfg.ThingsURL, grpc.WithInsecure())
|
|
if err != nil {
|
|
logger.Error(fmt.Sprintf("Failed to connect to users service: %s", err))
|
|
os.Exit(1)
|
|
}
|
|
defer conn.Close()
|
|
|
|
cc := thingsapi.NewClient(conn)
|
|
pub := nats.NewMessagePublisher(nc)
|
|
|
|
svc := adapter.New(pub)
|
|
svc = api.LoggingMiddleware(svc, logger)
|
|
svc = api.MetricsMiddleware(
|
|
svc,
|
|
kitprometheus.NewCounterFrom(stdprometheus.CounterOpts{
|
|
Namespace: "http_adapter",
|
|
Subsystem: "api",
|
|
Name: "request_count",
|
|
Help: "Number of requests received.",
|
|
}, []string{"method"}),
|
|
kitprometheus.NewSummaryFrom(stdprometheus.SummaryOpts{
|
|
Namespace: "http_adapter",
|
|
Subsystem: "api",
|
|
Name: "request_latency_microseconds",
|
|
Help: "Total duration of requests in microseconds.",
|
|
}, []string{"method"}),
|
|
)
|
|
|
|
errs := make(chan error, 2)
|
|
|
|
go func() {
|
|
p := fmt.Sprintf(":%s", cfg.Port)
|
|
logger.Info(fmt.Sprintf("HTTP adapter service started, exposed port %s", cfg.Port))
|
|
errs <- http.ListenAndServe(p, api.MakeHandler(svc, cc))
|
|
}()
|
|
|
|
go func() {
|
|
c := make(chan os.Signal)
|
|
signal.Notify(c, syscall.SIGINT)
|
|
errs <- fmt.Errorf("%s", <-c)
|
|
}()
|
|
|
|
err = <-errs
|
|
logger.Error(fmt.Sprintf("HTTP adapter terminated: %s", err))
|
|
}
|