mirror of
https://github.com/absmach/supermq.git
synced 2026-06-23 06:30:22 +00:00
658003080e
Signed-off-by: Dusan Borovcanin <borovcanindusan1@gmail.com>
277 lines
9.2 KiB
Go
277 lines
9.2 KiB
Go
// Copyright (c) Abstract Machines
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//go:build !test
|
|
|
|
package api
|
|
|
|
import (
|
|
"context"
|
|
"log/slog"
|
|
"time"
|
|
|
|
"github.com/absmach/magistrala/bootstrap"
|
|
)
|
|
|
|
var _ bootstrap.Service = (*loggingMiddleware)(nil)
|
|
|
|
type loggingMiddleware struct {
|
|
logger *slog.Logger
|
|
svc bootstrap.Service
|
|
}
|
|
|
|
// LoggingMiddleware adds logging facilities to the bootstrap service.
|
|
func LoggingMiddleware(svc bootstrap.Service, logger *slog.Logger) bootstrap.Service {
|
|
return &loggingMiddleware{logger, svc}
|
|
}
|
|
|
|
// Add logs the add request. It logs the thing ID and the time it took to complete the request.
|
|
// If the request fails, it logs the error.
|
|
func (lm *loggingMiddleware) Add(ctx context.Context, token string, cfg bootstrap.Config) (saved bootstrap.Config, err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.String("thing_id", saved.ThingID),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("Add new bootstrap failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("Add new bootstrap completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.Add(ctx, token, cfg)
|
|
}
|
|
|
|
// View logs the view request. It logs the thing ID and the time it took to complete the request.
|
|
// If the request fails, it logs the error.
|
|
func (lm *loggingMiddleware) View(ctx context.Context, token, id string) (saved bootstrap.Config, err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.String("thing_id", id),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("View thing config failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("View thing config completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.View(ctx, token, id)
|
|
}
|
|
|
|
// Update logs the update request. It logs bootstrap thing ID and the time it took to complete the request.
|
|
// If the request fails, it logs the error.
|
|
func (lm *loggingMiddleware) Update(ctx context.Context, token string, cfg bootstrap.Config) (err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.Group("config",
|
|
slog.String("thing_id", cfg.ThingID),
|
|
slog.String("name", cfg.Name),
|
|
),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("Update bootstrap config failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("Update bootstrap config completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.Update(ctx, token, cfg)
|
|
}
|
|
|
|
// UpdateCert logs the update_cert request. It logs thing ID and the time it took to complete the request.
|
|
// If the request fails, it logs the error.
|
|
func (lm *loggingMiddleware) UpdateCert(ctx context.Context, token, thingID, clientCert, clientKey, caCert string) (cfg bootstrap.Config, err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.String("thing_id", cfg.ThingID),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("Update bootstrap config certificate failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("Update bootstrap config certificate completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.UpdateCert(ctx, token, thingID, clientCert, clientKey, caCert)
|
|
}
|
|
|
|
// UpdateConnections logs the update_connections request. It logs bootstrap ID and the time it took to complete the request.
|
|
// If the request fails, it logs the error.
|
|
func (lm *loggingMiddleware) UpdateConnections(ctx context.Context, token, id string, connections []string) (err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.String("thing_id", id),
|
|
slog.Any("connections", connections),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("Update config connections failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("Update config connections completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.UpdateConnections(ctx, token, id, connections)
|
|
}
|
|
|
|
// List logs the list request. It logs offset, limit and the time it took to complete the request.
|
|
// If the request fails, it logs the error.
|
|
func (lm *loggingMiddleware) List(ctx context.Context, token string, filter bootstrap.Filter, offset, limit uint64) (res bootstrap.ConfigsPage, err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.Group("page",
|
|
slog.Any("filter", filter),
|
|
slog.Uint64("offset", offset),
|
|
slog.Uint64("limit", limit),
|
|
slog.Uint64("total", res.Total),
|
|
),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("List configs failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("List configs completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.List(ctx, token, filter, offset, limit)
|
|
}
|
|
|
|
// Remove logs the remove request. It logs bootstrap ID and the time it took to complete the request.
|
|
// If the request fails, it logs the error.
|
|
func (lm *loggingMiddleware) Remove(ctx context.Context, token, id string) (err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.String("thing_id", id),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("Remove bootstrap config failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("Remove bootstrap config completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.Remove(ctx, token, id)
|
|
}
|
|
|
|
func (lm *loggingMiddleware) Bootstrap(ctx context.Context, externalKey, externalID string, secure bool) (cfg bootstrap.Config, err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.String("external_id", externalID),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("View bootstrap config failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("View bootstrap completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.Bootstrap(ctx, externalKey, externalID, secure)
|
|
}
|
|
|
|
func (lm *loggingMiddleware) ChangeState(ctx context.Context, token, id string, state bootstrap.State) (err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.String("id", id),
|
|
slog.Any("state", state),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("Change thing state failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("Change thing state completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.ChangeState(ctx, token, id, state)
|
|
}
|
|
|
|
func (lm *loggingMiddleware) UpdateChannelHandler(ctx context.Context, channel bootstrap.Channel) (err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.Group("channel",
|
|
slog.String("id", channel.ID),
|
|
slog.String("name", channel.Name),
|
|
slog.Any("metadata", channel.Metadata),
|
|
),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("Update channel handler failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("Update channel handler completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.UpdateChannelHandler(ctx, channel)
|
|
}
|
|
|
|
func (lm *loggingMiddleware) RemoveConfigHandler(ctx context.Context, id string) (err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.String("config_id", id),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("Remove config handler failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("Remove config handler completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.RemoveConfigHandler(ctx, id)
|
|
}
|
|
|
|
func (lm *loggingMiddleware) RemoveChannelHandler(ctx context.Context, id string) (err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.String("channel_id", id),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("Remove channel handler failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("Remove channel handler completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.RemoveChannelHandler(ctx, id)
|
|
}
|
|
|
|
func (lm *loggingMiddleware) DisconnectThingHandler(ctx context.Context, channelID, thingID string) (err error) {
|
|
defer func(begin time.Time) {
|
|
args := []any{
|
|
slog.String("duration", time.Since(begin).String()),
|
|
slog.String("channel_id", channelID),
|
|
slog.String("thing_id", thingID),
|
|
}
|
|
if err != nil {
|
|
args = append(args, slog.Any("error", err))
|
|
lm.logger.Warn("Disconnect thing handler failed to complete successfully", args...)
|
|
return
|
|
}
|
|
lm.logger.Info("Disconnect thing handler completed successfully", args...)
|
|
}(time.Now())
|
|
|
|
return lm.svc.DisconnectThingHandler(ctx, channelID, thingID)
|
|
}
|