databag/net/server/internal/api_addCard.go

138 lines
3.6 KiB
Go
Raw Normal View History

2022-01-20 23:19:26 +00:00
package databag
import (
"errors"
"net/http"
"gorm.io/gorm"
"encoding/hex"
2022-01-20 23:19:26 +00:00
"github.com/google/uuid"
"databag/internal/store"
"github.com/theckman/go-securerandom"
2022-01-20 23:19:26 +00:00
)
func AddCard(w http.ResponseWriter, r *http.Request) {
2022-04-05 18:39:18 +00:00
account, code, err := ParamAgentToken(r, false)
2022-01-20 23:19:26 +00:00
if err != nil {
ErrResponse(w, code, err)
return
}
var message DataMessage
if err := ParseRequest(r, w, &message); err != nil {
ErrResponse(w, http.StatusBadRequest, err)
return
}
var identity Identity
guid, messageType, _, err := ReadDataMessage(&message, &identity)
if messageType != APP_MSGIDENTITY || err != nil {
ErrResponse(w, http.StatusBadRequest, err)
return
}
2022-02-03 06:13:46 +00:00
slot := &store.CardSlot{}
2022-01-20 23:19:26 +00:00
var card store.Card
if err := store.DB.Preload("CardSlot").Preload("Groups").Where("account_id = ? AND guid = ?", account.Guid, guid).First(&card).Error; err != nil {
2022-01-20 23:19:26 +00:00
if !errors.Is(err, gorm.ErrRecordNotFound) {
ErrResponse(w, http.StatusInternalServerError, err)
return
}
2022-01-21 07:41:08 +00:00
2022-02-03 06:13:46 +00:00
// create new card data
data, res := securerandom.Bytes(APP_TOKENSIZE)
if res != nil {
2022-02-03 06:13:46 +00:00
ErrResponse(w, http.StatusInternalServerError, err)
return
}
2022-02-03 06:13:46 +00:00
card := &store.Card{
Guid: guid,
Username: identity.Handle,
Name: identity.Name,
Description: identity.Description,
Location: identity.Location,
Image: identity.Image,
Version: identity.Version,
Node: identity.Node,
ProfileRevision: identity.Revision,
Status: APP_CARDCONFIRMED,
ViewRevision: 0,
InToken: hex.EncodeToString(data),
AccountID: account.Guid,
}
2022-01-21 07:41:08 +00:00
2022-04-05 18:39:18 +00:00
// save new card
err = store.DB.Transaction(func(tx *gorm.DB) error {
if res := tx.Save(card).Error; res != nil {
return res
2022-02-03 06:13:46 +00:00
}
2022-04-05 18:39:18 +00:00
slot.CardSlotId = uuid.New().String()
slot.AccountID = account.ID
slot.Revision = account.CardRevision + 1
slot.CardID = card.ID
slot.Card = card
if res := tx.Save(slot).Error; res != nil {
return res
2022-02-03 06:13:46 +00:00
}
2022-04-05 18:39:18 +00:00
if res := tx.Model(&account).Update("card_revision", account.CardRevision + 1).Error; res != nil {
return res
2022-02-03 06:13:46 +00:00
}
2022-04-05 18:39:18 +00:00
return nil
})
if err != nil {
ErrResponse(w, http.StatusInternalServerError, err)
return
2022-02-03 06:13:46 +00:00
}
2022-01-20 23:19:26 +00:00
} else {
2022-02-09 07:54:09 +00:00
2022-02-03 06:13:46 +00:00
if identity.Revision > card.ProfileRevision {
2022-01-20 23:19:26 +00:00
2022-02-03 06:13:46 +00:00
// update card data
card.Username = identity.Handle
card.Name = identity.Name
card.Description = identity.Description
card.Location = identity.Location
card.Image = identity.Image
card.Version = identity.Version
card.Node = identity.Node
card.ProfileRevision = identity.Revision
}
2022-01-21 05:48:24 +00:00
// save contact card
err = store.DB.Transaction(func(tx *gorm.DB) error {
if res := tx.Save(&card).Error; res != nil {
return res
}
2022-02-09 07:54:09 +00:00
slot = &card.CardSlot
if slot == nil {
slot = &store.CardSlot{
CardSlotId: uuid.New().String(),
AccountID: account.ID,
Revision: account.CardRevision + 1,
CardID: card.ID,
Card: &card,
2022-02-03 06:13:46 +00:00
}
} else {
slot.Revision = account.CardRevision + 1
}
if res := tx.Preload("Card").Save(slot).Error; res != nil {
return res
}
if res := tx.Model(&account).Update("card_revision", account.CardRevision + 1).Error; res != nil {
return res
}
2022-02-09 07:54:09 +00:00
slot.Card = &card
return nil
})
2022-02-03 06:13:46 +00:00
}
2022-01-21 05:48:24 +00:00
if err != nil {
2022-01-20 23:19:26 +00:00
ErrResponse(w, http.StatusInternalServerError, err)
return
}
2022-01-21 05:48:24 +00:00
SetStatus(account)
2022-02-03 06:13:46 +00:00
WriteResponse(w, getCardModel(slot))
2022-01-20 23:19:26 +00:00
}