mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-29 13:49:28 +08:00

* Change CanAccess to CanAccessByKey for things Signed-off-by: Nick Neisen <nwneisen@gmail.com> * Change CanAccess in remaining occurances Signed-off-by: Nick Neisen <nwneisen@gmail.com> * Regenerate generated files Signed-off-by: Nick Neisen <nwneisen@gmail.com> * Generate pb.go files with protoc 3.6.1 Signed-off-by: Nick Neisen <nwneisen@gmail.com>
42 lines
981 B
Go
42 lines
981 B
Go
// Copyright (c) Mainflux
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Package http contains the domain concept definitions needed to support
|
|
// Mainflux http adapter service functionality.
|
|
package http
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/mainflux/mainflux"
|
|
)
|
|
|
|
var _ mainflux.MessagePublisher = (*adapterService)(nil)
|
|
|
|
type adapterService struct {
|
|
pub mainflux.MessagePublisher
|
|
things mainflux.ThingsServiceClient
|
|
}
|
|
|
|
// New instantiates the HTTP adapter implementation.
|
|
func New(pub mainflux.MessagePublisher, things mainflux.ThingsServiceClient) mainflux.MessagePublisher {
|
|
return &adapterService{
|
|
pub: pub,
|
|
things: things,
|
|
}
|
|
}
|
|
|
|
func (as *adapterService) Publish(ctx context.Context, token string, msg mainflux.RawMessage) error {
|
|
ar := &mainflux.AccessByKeyReq{
|
|
Token: token,
|
|
ChanID: msg.GetChannel(),
|
|
}
|
|
thid, err := as.things.CanAccessByKey(ctx, ar)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
msg.Publisher = thid.GetValue()
|
|
|
|
return as.pub.Publish(ctx, token, msg)
|
|
}
|