mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-28 13:48:49 +08:00
426 lines
10 KiB
Go
426 lines
10 KiB
Go
// Copyright (c) Mainflux
|
|||
// SPDX-License-Identifier: Apache-2.0
|
|||
|
|||
package twins
|
|||
|
|||
import (
|
|||
"context"
|
|||
"encoding/json"
|
|||
"fmt"
|
|||
"math"
|
|||
"time"
|
|||
|
|||
"github.com/mainflux/mainflux/errors"
|
|||
"github.com/mainflux/mainflux/logger"
|
|||
"github.com/mainflux/mainflux/messaging"
|
|||
|
|||
"github.com/mainflux/mainflux"
|
|||
"github.com/mainflux/senml"
|
|||
)
|
|||
|
|||
const (
|
|||
publisher = "twins"
|
|||
)
|
|||
|
|||
var (
|
|||
// ErrMalformedEntity indicates malformed entity specification (e.g.
|
|||
// invalid username or password).
|
|||
ErrMalformedEntity = errors.New("malformed entity specification")
|
|||
|
|||
// ErrUnauthorizedAccess indicates missing or invalid credentials provided
|
|||
// when accessing a protected resource.
|
|||
ErrUnauthorizedAccess = errors.New("missing or invalid credentials provided")
|
|||
|
|||
// ErrNotFound indicates a non-existent entity request.
|
|||
ErrNotFound = errors.New("non-existent entity")
|
|||
|
|||
// ErrConflict indicates that entity already exists.
|
|||
ErrConflict = errors.New("entity already exists")
|
|||
)
|
|||
|
|||
// Service specifies an API that must be fullfiled by the domain service
|
|||
// implementation, and all of its decorators (e.g. logging & metrics).
|
|||
type Service interface {
|
|||
// AddTwin adds new twin related to user identified by the provided key.
|
|||
![]() |
AddTwin(ctx context.Context, token string, twin Twin, def Definition) (tw Twin, err error)
|
||
|
|||
// UpdateTwin updates twin identified by the provided Twin that
|
|||
// belongs to the user identified by the provided key.
|
|||
![]() |
UpdateTwin(ctx context.Context, token string, twin Twin, def Definition) (err error)
|
||
|
|||
// ViewTwin retrieves data about twin with the provided
|
|||
// ID belonging to the user identified by the provided key.
|
|||
![]() |
ViewTwin(ctx context.Context, token, id string) (tw Twin, err error)
|
||
|
|||
// RemoveTwin removes the twin identified with the provided ID, that
|
|||
// belongs to the user identified by the provided key.
|
|||
RemoveTwin(ctx context.Context, token, id string) (err error)
|
|||
|
|||
// ListTwins retrieves data about subset of twins that belongs to the
|
|||
// user identified by the provided key.
|
|||
ListTwins(ctx context.Context, token string, offset uint64, limit uint64, name string, metadata Metadata) (Page, error)
|
|||
|
|||
// ListStates retrieves data about subset of states that belongs to the
|
|||
// twin identified by the id.
|
|||
![]() |
ListStates(ctx context.Context, token string, offset uint64, limit uint64, id string) (StatesPage, error)
|
||
|
|||
// SaveStates persists states into database
|
|||
SaveStates(msg *messaging.Message) error
|
|||
}
|
|||
|
|||
const (
|
|||
noop = iota
|
|||
update
|
|||
save
|
|||
millisec = 1e6
|
|||
nanosec = 1e9
|
|||
)
|
|||
|
|||
var crudOp = map[string]string{
|
|||
"createSucc": "create.success",
|
|||
"createFail": "create.failure",
|
|||
"updateSucc": "update.success",
|
|||
"updateFail": "update.failure",
|
|||
"getSucc": "get.success",
|
|||
"getFail": "get.failure",
|
|||
"removeSucc": "remove.success",
|
|||
"removeFail": "remove.failure",
|
|||
"stateSucc": "save.success",
|
|||
"stateFail": "save.failure",
|
|||
}
|
|||
|
|||
type twinsService struct {
|
|||
publisher messaging.Publisher
|
|||
auth mainflux.AuthNServiceClient
|
|||
twins TwinRepository
|
|||
states StateRepository
|
|||
idp IdentityProvider
|
|||
channelID string
|
|||
logger logger.Logger
|
|||
}
|
|||
|
|||
var _ Service = (*twinsService)(nil)
|
|||
|
|||
// New instantiates the twins service implementation.
|
|||
func New(publisher messaging.Publisher, auth mainflux.AuthNServiceClient, twins TwinRepository, sr StateRepository, idp IdentityProvider, chann string, logger logger.Logger) Service {
|
|||
return &twinsService{
|
|||
publisher: publisher,
|
|||
auth: auth,
|
|||
twins: twins,
|
|||
states: sr,
|
|||
idp: idp,
|
|||
channelID: chann,
|
|||
logger: logger,
|
|||
}
|
|||
}
|
|||
|
|||
func (ts *twinsService) AddTwin(ctx context.Context, token string, twin Twin, def Definition) (tw Twin, err error) {
|
|||
var id string
|
|||
var b []byte
|
|||
defer ts.publish(&id, &err, crudOp["createSucc"], crudOp["createFail"], &b)
|
|||
|
|||
res, err := ts.auth.Identify(ctx, &mainflux.Token{Value: token})
|
|||
if err != nil {
|
|||
return Twin{}, ErrUnauthorizedAccess
|
|||
}
|
|||
|
|||
twin.ID, err = ts.idp.ID()
|
|||
if err != nil {
|
|||
return Twin{}, err
|
|||
}
|
|||
|
|||
twin.Owner = res.GetValue()
|
|||
|
|||
t := time.Now()
|
|||
twin.Created = t
|
|||
twin.Updated = t
|
|||
|
|||
if def.Attributes == nil {
|
|||
def.Attributes = []Attribute{}
|
|||
}
|
|||
if def.Delta == 0 {
|
|||
def.Delta = millisec
|
|||
}
|
|||
|
|||
def.Created = time.Now()
|
|||
def.ID = 0
|
|||
twin.Definitions = append(twin.Definitions, def)
|
|||
|
|||
twin.Revision = 0
|
|||
if _, err = ts.twins.Save(ctx, twin); err != nil {
|
|||
return Twin{}, err
|
|||
}
|
|||
|
|||
id = twin.ID
|
|||
b, err = json.Marshal(twin)
|
|||
|
|||
return twin, nil
|
|||
}
|
|||
|
|||
func (ts *twinsService) UpdateTwin(ctx context.Context, token string, twin Twin, def Definition) (err error) {
|
|||
var b []byte
|
|||
var id string
|
|||
defer ts.publish(&id, &err, crudOp["updateSucc"], crudOp["updateFail"], &b)
|
|||
|
|||
_, err = ts.auth.Identify(ctx, &mainflux.Token{Value: token})
|
|||
if err != nil {
|
|||
return ErrUnauthorizedAccess
|
|||
}
|
|||
|
|||
tw, err := ts.twins.RetrieveByID(ctx, twin.ID)
|
|||
if err != nil {
|
|||
return err
|
|||
}
|
|||
![]()
Fix twins update revision counter (#1011)
Signed-off-by: Darko Draskovic <darko.draskovic@gmail.com>
|
|
||
revision := false
|
|||
|
|||
if twin.Name != "" {
|
|||
![]()
Fix twins update revision counter (#1011)
Signed-off-by: Darko Draskovic <darko.draskovic@gmail.com>
|
revision = true
|
||
tw.Name = twin.Name
|
|||
}
|
|||
|
|||
if len(def.Attributes) > 0 {
|
|||
![]()
Fix twins update revision counter (#1011)
Signed-off-by: Darko Draskovic <darko.draskovic@gmail.com>
|
revision = true
|
||
def.Created = time.Now()
|
|||
def.ID = tw.Definitions[len(tw.Definitions)-1].ID + 1
|
|||
tw.Definitions = append(tw.Definitions, def)
|
|||
}
|
|||
|
|||
![]()
Fix twins update revision counter (#1011)
Signed-off-by: Darko Draskovic <darko.draskovic@gmail.com>
|
if len(twin.Metadata) > 0 {
|
||
revision = true
|
|||
tw.Metadata = twin.Metadata
|
|||
}
|
|||
|
|||
![]()
Fix twins update revision counter (#1011)
Signed-off-by: Darko Draskovic <darko.draskovic@gmail.com>
|
if !revision {
|
||
return ErrMalformedEntity
|
|||
}
|
|||
|
|||
tw.Updated = time.Now()
|
|||
tw.Revision++
|
|||
|
|||
if err := ts.twins.Update(ctx, tw); err != nil {
|
|||
return err
|
|||
}
|
|||
|
|||
id = twin.ID
|
|||
b, err = json.Marshal(tw)
|
|||
|
|||
return nil
|
|||
}
|
|||
|
|||
func (ts *twinsService) ViewTwin(ctx context.Context, token, id string) (tw Twin, err error) {
|
|||
var b []byte
|
|||
defer ts.publish(&id, &err, crudOp["getSucc"], crudOp["getFail"], &b)
|
|||
|
|||
_, err = ts.auth.Identify(ctx, &mainflux.Token{Value: token})
|
|||
if err != nil {
|
|||
return Twin{}, ErrUnauthorizedAccess
|
|||
}
|
|||
|
|||
twin, err := ts.twins.RetrieveByID(ctx, id)
|
|||
if err != nil {
|
|||
return Twin{}, err
|
|||
}
|
|||
|
|||
b, err = json.Marshal(twin)
|
|||
|
|||
return twin, nil
|
|||
}
|
|||
|
|||
func (ts *twinsService) RemoveTwin(ctx context.Context, token, id string) (err error) {
|
|||
var b []byte
|
|||
defer ts.publish(&id, &err, crudOp["removeSucc"], crudOp["removeFail"], &b)
|
|||
|
|||
_, err = ts.auth.Identify(ctx, &mainflux.Token{Value: token})
|
|||
if err != nil {
|
|||
return ErrUnauthorizedAccess
|
|||
}
|
|||
|
|||
if err := ts.twins.Remove(ctx, id); err != nil {
|
|||
return err
|
|||
}
|
|||
|
|||
return nil
|
|||
}
|
|||
|
|||
func (ts *twinsService) ListTwins(ctx context.Context, token string, offset uint64, limit uint64, name string, metadata Metadata) (Page, error) {
|
|||
res, err := ts.auth.Identify(ctx, &mainflux.Token{Value: token})
|
|||
if err != nil {
|
|||
return Page{}, ErrUnauthorizedAccess
|
|||
}
|
|||
|
|||
return ts.twins.RetrieveAll(ctx, res.GetValue(), offset, limit, name, metadata)
|
|||
}
|
|||
|
|||
func (ts *twinsService) ListStates(ctx context.Context, token string, offset uint64, limit uint64, id string) (StatesPage, error) {
|
|||
_, err := ts.auth.Identify(ctx, &mainflux.Token{Value: token})
|
|||
if err != nil {
|
|||
return StatesPage{}, ErrUnauthorizedAccess
|
|||
}
|
|||
|
|||
return ts.states.RetrieveAll(ctx, offset, limit, id)
|
|||
}
|
|||
|
|||
func (ts *twinsService) SaveStates(msg *messaging.Message) error {
|
|||
ids, err := ts.twins.RetrieveByAttribute(context.TODO(), msg.Channel, msg.Subtopic)
|
|||
if err != nil {
|
|||
return err
|
|||
}
|
|||
|
|||
for _, id := range ids {
|
|||
if err := ts.saveState(msg, id); err != nil {
|
|||
return err
|
|||
}
|
|||
}
|
|||
|
|||
return nil
|
|||
}
|
|||
|
|||
func (ts *twinsService) saveState(msg *messaging.Message, id string) error {
|
|||
var b []byte
|
|||
var err error
|
|||
defer ts.publish(&id, &err, crudOp["stateSucc"], crudOp["stateFail"], &b)
|
|||
|
|||
tw, err := ts.twins.RetrieveByID(context.TODO(), id)
|
|||
if err != nil {
|
|||
return fmt.Errorf("Retrieving twin for %s failed: %s", msg.Publisher, err)
|
|||
}
|
|||
|
|||
var recs []senml.Record
|
|||
if err := json.Unmarshal(msg.Payload, &recs); err != nil {
|
|||
return fmt.Errorf("Unmarshal payload for %s failed: %s", msg.Publisher, err)
|
|||
}
|
|||
|
|||
st, err := ts.states.RetrieveLast(context.TODO(), tw.ID)
|
|||
if err != nil {
|
|||
return fmt.Errorf("Retrieve last state for %s failed: %s", msg.Publisher, err)
|
|||
}
|
|||
|
|||
![]() |
for _, rec := range recs {
|
||
action := prepareState(&st, &tw, rec, msg)
|
|||
switch action {
|
|||
case noop:
|
|||
![]() |
return nil
|
||
case update:
|
|||
if err := ts.states.Update(context.TODO(), st); err != nil {
|
|||
return fmt.Errorf("Update state for %s failed: %s", msg.Publisher, err)
|
|||
}
|
|||
case save:
|
|||
if err := ts.states.Save(context.TODO(), st); err != nil {
|
|||
return fmt.Errorf("Save state for %s failed: %s", msg.Publisher, err)
|
|||
}
|
|||
![]() |
}
|
||
}
|
|||
|
|||
id = msg.Publisher
|
|||
b = msg.Payload
|
|||
|
|||
return nil
|
|||
}
|
|||
|
|||
func prepareState(st *State, tw *Twin, rec senml.Record, msg *messaging.Message) int {
|
|||
def := tw.Definitions[len(tw.Definitions)-1]
|
|||
st.TwinID = tw.ID
|
|||
st.Definition = def.ID
|
|||
|
|||
if st.Payload == nil {
|
|||
st.Payload = make(map[string]interface{})
|
|||
st.ID = -1 // state is incremented on save -> zero-based index
|
|||
} else {
|
|||
for k := range st.Payload {
|
|||
idx := findAttribute(k, def.Attributes)
|
|||
if idx < 0 || !def.Attributes[idx].PersistState {
|
|||
delete(st.Payload, k)
|
|||
}
|
|||
}
|
|||
}
|
|||
|
|||
recSec := rec.BaseTime + rec.Time
|
|||
recNano := recSec * nanosec
|
|||
sec, dec := math.Modf(recSec)
|
|||
recTime := time.Unix(int64(sec), int64(dec*nanosec))
|
|||
|
|||
action := noop
|
|||
for _, attr := range def.Attributes {
|
|||
if !attr.PersistState {
|
|||
continue
|
|||
}
|
|||
if attr.Channel == msg.Channel && attr.Subtopic == msg.Subtopic {
|
|||
action = update
|
|||
delta := math.Abs(float64(st.Created.UnixNano()) - recNano)
|
|||
if recNano == 0 || delta > float64(def.Delta) {
|
|||
action = save
|
|||
st.ID++
|
|||
st.Created = time.Now()
|
|||
if recNano != 0 {
|
|||
st.Created = recTime
|
|||
}
|
|||
}
|
|||
![]() |
val := findValue(rec)
|
||
st.Payload[attr.Name] = val
|
|||
|
|||
break
|
|||
}
|
|||
}
|
|||
|
|||
return action
|
|||
}
|
|||
|
|||
func findValue(rec senml.Record) interface{} {
|
|||
if rec.Value != nil {
|
|||
return rec.Value
|
|||
}
|
|||
if rec.StringValue != nil {
|
|||
return rec.StringValue
|
|||
}
|
|||
if rec.DataValue != nil {
|
|||
return rec.DataValue
|
|||
}
|
|||
if rec.BoolValue != nil {
|
|||
return rec.BoolValue
|
|||
}
|
|||
if rec.Sum != nil {
|
|||
return rec.Sum
|
|||
}
|
|||
return nil
|
|||
}
|
|||
|
|||
func findAttribute(name string, attrs []Attribute) (idx int) {
|
|||
for idx, attr := range attrs {
|
|||
if attr.Name == name {
|
|||
return idx
|
|||
}
|
|||
}
|
|||
return -1
|
|||
}
|
|||
|
|||
func (ts *twinsService) publish(twinID *string, err *error, succOp, failOp string, payload *[]byte) {
|
|||
if ts.channelID == "" {
|
|||
return
|
|||
}
|
|||
|
|||
op := succOp
|
|||
if *err != nil {
|
|||
op = failOp
|
|||
esb := []byte((*err).Error())
|
|||
payload = &esb
|
|||
}
|
|||
|
|||
pl := *payload
|
|||
if pl == nil {
|
|||
pl = []byte(fmt.Sprintf("{\"deleted\":\"%s\"}", *twinID))
|
|||
}
|
|||
|
|||
msg := messaging.Message{
|
|||
Channel: ts.channelID,
|
|||
Subtopic: op,
|
|||
Payload: pl,
|
|||
Publisher: publisher,
|
|||
Created: time.Now().UnixNano(),
|
|||
}
|
|||
|
|||
if err := ts.publisher.Publish(msg.Channel, msg); err != nil {
|
|||
ts.logger.Warn(fmt.Sprintf("Failed to publish notification on NATS: %s", err))
|
|||
}
|
|||
}
|