2021-11-05 10:36:30 +00:00
|
|
|
package devicemngmt
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/Selly-Modules/logger"
|
|
|
|
"go.mongodb.org/mongo-driver/bson"
|
|
|
|
)
|
|
|
|
|
2021-11-06 10:35:29 +00:00
|
|
|
// DeleteByDeviceID ...
|
|
|
|
func (s Service) DeleteByDeviceID(deviceID string) error {
|
2021-11-05 10:36:30 +00:00
|
|
|
var (
|
|
|
|
ctx = context.Background()
|
|
|
|
col = s.getDeviceCollection()
|
|
|
|
cond = bson.M{
|
|
|
|
"deviceID": deviceID,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
// Delete
|
|
|
|
if _, err := col.DeleteOne(ctx, cond); err != nil {
|
2021-11-06 10:35:29 +00:00
|
|
|
logger.Error("devicemngt - deleteByDeviceID", logger.LogData{
|
2021-11-05 10:36:30 +00:00
|
|
|
"deviceID": deviceID,
|
|
|
|
"err": err.Error(),
|
|
|
|
})
|
|
|
|
return fmt.Errorf("error when delete device: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|