databag/net/server/internal/api_getChannelTopicAsset.go

49 lines
1.2 KiB
Go
Raw Normal View History

2022-03-02 07:52:37 +00:00
package databag
import (
"errors"
"gorm.io/gorm"
"net/http"
"github.com/gorilla/mux"
"databag/internal/store"
)
func GetChannelTopicAsset(w http.ResponseWriter, r *http.Request) {
// scan parameters
params := mux.Vars(r)
topicID := params["topicID"]
assetID := params["assetID"]
2022-03-02 07:52:37 +00:00
channelSlot, _, 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 {
2022-03-02 07:52:37 +00:00
if errors.Is(err, gorm.ErrRecordNotFound) {
ErrResponse(w, http.StatusNotFound, err)
} else {
ErrResponse(w, http.StatusInternalServerError, err)
}
return
}
if asset.Topic.TopicSlot.TopicSlotID != topicID {
2022-03-02 07:52:37 +00:00
ErrResponse(w, http.StatusNotFound, errors.New("invalid topic asset"))
return
}
if asset.Transform == "" {
ErrResponse(w, http.StatusUnauthorized, errors.New("transform source files not accessible"))
return
}
// construct file path
2022-07-22 18:01:29 +00:00
path := getStrConfigValue(CNFAssetPath, APPDefaultPath) + "/" + act.GUID + "/" + asset.AssetID
2022-03-02 07:52:37 +00:00
http.ServeFile(w, r, path)
}