update IsDeviceIDExisted

This commit is contained in:
Hoang 2021-11-23 12:57:22 +07:00
parent 2a9870b3d4
commit 1c4cbb1868
1 changed files with 6 additions and 6 deletions

View File

@ -9,17 +9,17 @@ import (
func (s Service) IsDeviceIDExisted(deviceID string) bool {
var (
col = s.getDeviceCollection()
device = Device{}
ctx = context.Background()
col = s.getDeviceCollection()
ctx = context.Background()
)
if err := col.FindOne(ctx, bson.M{"deviceId": deviceID}).Decode(&device); err != nil {
logger.Error("devicemngmt - findByDeviceID", logger.LogData{
total, err := col.CountDocuments(ctx, bson.M{"deviceId": deviceID})
if err != nil {
logger.Error("devicemngmt - isDeviceIDExisted", logger.LogData{
"deviceId": deviceID,
"err": err.Error(),
})
return true
}
return !device.ID.IsZero()
return total != 0
}