mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 11:39:17 +00:00
93 lines
2.4 KiB
Go
93 lines
2.4 KiB
Go
package databag
|
|
|
|
import (
|
|
"errors"
|
|
"github.com/gorilla/mux"
|
|
"gorm.io/gorm"
|
|
"databag/internal/store"
|
|
"net/http"
|
|
)
|
|
|
|
func RemoveChannelTopicAsset(w http.ResponseWriter, r *http.Request) {
|
|
|
|
// scan parameters
|
|
params := mux.Vars(r)
|
|
topicId := params["topicId"]
|
|
assetId := params["assetId"]
|
|
|
|
channelSlot, guid, err, code := getChannelSlot(r, true)
|
|
if err != nil {
|
|
ErrResponse(w, code, err)
|
|
return
|
|
}
|
|
act := &channelSlot.Account
|
|
|
|
// load asset
|
|
var asset store.Asset
|
|
if err = store.DB.Preload("Topic.TopicSlot").Where("channel_id = ? AND asset_id = ?", channelSlot.Channel.ID, assetId).First(&asset).Error; err != nil {
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
ErrResponse(w, http.StatusNotFound, err)
|
|
} else {
|
|
ErrResponse(w, http.StatusInternalServerError, err)
|
|
}
|
|
return
|
|
}
|
|
if asset.Topic.TopicSlot.TopicSlotId != topicId {
|
|
ErrResponse(w, http.StatusNotFound, errors.New("invalid topic"))
|
|
return
|
|
}
|
|
|
|
// can only update topic if creator
|
|
if asset.Topic.Guid != guid {
|
|
ErrResponse(w, http.StatusUnauthorized, errors.New("topic not created by you"))
|
|
return
|
|
}
|
|
|
|
// delete asset record
|
|
err = store.DB.Transaction(func(tx *gorm.DB) error {
|
|
if res := tx.Delete(&asset).Error; res != nil {
|
|
return res
|
|
}
|
|
if res := tx.Model(&asset.Topic).Update("detail_revision", act.ChannelRevision + 1).Error; res != nil {
|
|
return res
|
|
}
|
|
if res := tx.Model(&asset.Topic.TopicSlot).Update("revision", act.ChannelRevision + 1).Error; res != nil {
|
|
return res
|
|
}
|
|
if res := tx.Model(&channelSlot).Update("revision", act.ChannelRevision + 1).Error; res != nil {
|
|
return res
|
|
}
|
|
if res := tx.Model(act).Update("channel_revision", act.ChannelRevision + 1).Error; res != nil {
|
|
return res
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
ErrResponse(w, http.StatusInternalServerError, err)
|
|
return
|
|
}
|
|
|
|
// cleanup files from deleted record
|
|
go garbageCollect(act)
|
|
|
|
// determine affected contact list
|
|
cards := make(map[string]store.Card)
|
|
for _, card := range channelSlot.Channel.Cards {
|
|
cards[card.Guid] = card
|
|
}
|
|
for _, group := range channelSlot.Channel.Groups {
|
|
for _, card := range group.Cards {
|
|
cards[card.Guid] = card
|
|
}
|
|
}
|
|
|
|
// notify
|
|
SetStatus(act)
|
|
for _, card := range cards {
|
|
SetContactChannelNotification(act, &card)
|
|
}
|
|
|
|
WriteResponse(w, nil)
|
|
}
|
|
|