2023-05-04 08:18:38 +00:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/hex"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"git.lumeweb.com/LumeWeb/portal/bao"
|
|
|
|
"git.lumeweb.com/LumeWeb/portal/cid"
|
|
|
|
"git.lumeweb.com/LumeWeb/portal/db"
|
|
|
|
"git.lumeweb.com/LumeWeb/portal/model"
|
|
|
|
"git.lumeweb.com/LumeWeb/portal/renterd"
|
|
|
|
"github.com/go-resty/resty/v2"
|
|
|
|
"github.com/kataras/iris/v12"
|
|
|
|
"io"
|
|
|
|
"lukechampine.com/blake3"
|
|
|
|
)
|
|
|
|
|
|
|
|
type FilesService struct {
|
|
|
|
Ctx iris.Context
|
|
|
|
}
|
|
|
|
|
|
|
|
var client *resty.Client
|
|
|
|
|
|
|
|
type UploadResponse struct {
|
|
|
|
Cid string `json:"cid"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func InitFiles() {
|
|
|
|
client = resty.New()
|
|
|
|
client.SetBaseURL(renterd.GetApiAddr() + "/api")
|
|
|
|
client.SetBasicAuth("", renterd.GetAPIPassword())
|
2023-05-06 07:56:38 +00:00
|
|
|
client.SetDisableWarn(true)
|
2023-05-04 08:18:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *FilesService) PostUpload() {
|
|
|
|
ctx := f.Ctx
|
|
|
|
|
2023-05-04 12:16:44 +00:00
|
|
|
file, meta, err := f.Ctx.FormFile("file")
|
2023-05-04 08:18:38 +00:00
|
|
|
if internalErrorCustom(ctx, err, errors.New("invalid file data")) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-04 13:11:31 +00:00
|
|
|
buf, err := io.ReadAll(file)
|
|
|
|
if internalError(ctx, err) {
|
|
|
|
return
|
|
|
|
}
|
2023-05-04 08:18:38 +00:00
|
|
|
|
|
|
|
if internalErrorCustom(ctx, err, errors.New("failed to read file data")) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-04 13:11:31 +00:00
|
|
|
hashBytes := blake3.Sum256(buf)
|
2023-05-04 08:18:38 +00:00
|
|
|
hashHex := hex.EncodeToString(hashBytes[:])
|
2023-05-04 12:16:44 +00:00
|
|
|
fileCid, err := cid.EncodeHashSimple(hashBytes, uint64(meta.Size))
|
2023-05-04 08:18:38 +00:00
|
|
|
|
|
|
|
if internalError(ctx, err) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-04 13:11:31 +00:00
|
|
|
_, err = file.Seek(0, io.SeekStart)
|
|
|
|
if internalError(ctx, err) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-04 08:18:38 +00:00
|
|
|
var upload model.Upload
|
|
|
|
result := db.Get().Where("hash = ?", hashHex).First(&upload)
|
|
|
|
if (result.Error != nil && result.Error.Error() != "record not found") || result.RowsAffected > 0 {
|
|
|
|
ctx.JSON(&UploadResponse{Cid: fileCid})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = file.Seek(0, io.SeekStart)
|
|
|
|
if internalError(ctx, err) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-04 13:11:31 +00:00
|
|
|
tree, err := bao.ComputeBaoTree(bytes.NewReader(buf))
|
2023-05-04 08:18:38 +00:00
|
|
|
if internalError(ctx, err) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
objectExistsResult, err := client.R().Get(fmt.Sprintf("/worker/objects/%s", hashHex))
|
|
|
|
|
|
|
|
if internalError(ctx, err) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if objectExistsResult.StatusCode() != 404 {
|
|
|
|
ctx.JSON(&UploadResponse{Cid: fileCid})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-04 13:11:31 +00:00
|
|
|
if internalError(ctx, err) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ret, err := client.R().SetBody(buf).Put(fmt.Sprintf("/worker/objects/%s", hashHex))
|
2023-05-04 11:58:06 +00:00
|
|
|
if ret.StatusCode() != 200 {
|
|
|
|
err = errors.New(string(ret.Body()))
|
|
|
|
}
|
2023-05-04 08:18:38 +00:00
|
|
|
if internalError(ctx, err) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-04 11:58:06 +00:00
|
|
|
ret, err = client.R().SetBody(tree).Put(fmt.Sprintf("/worker/objects/%s.obao", hashHex))
|
|
|
|
if ret.StatusCode() != 200 {
|
|
|
|
err = errors.New(string(ret.Body()))
|
|
|
|
}
|
2023-05-04 08:18:38 +00:00
|
|
|
if internalError(ctx, err) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
upload = model.Upload{
|
|
|
|
Hash: hashHex,
|
|
|
|
}
|
|
|
|
if err := db.Get().Create(&upload).Error; err != nil {
|
|
|
|
if internalError(ctx, err) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(&UploadResponse{Cid: fileCid})
|
|
|
|
}
|
|
|
|
|
|
|
|
func internalErrorCustom(ctx iris.Context, err error, customError error) bool {
|
|
|
|
if err != nil {
|
|
|
|
if customError != nil {
|
|
|
|
err = customError
|
|
|
|
}
|
|
|
|
ctx.StopWithError(iris.StatusInternalServerError, err)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
func internalError(ctx iris.Context, err error) bool {
|
|
|
|
return internalErrorCustom(ctx, err, nil)
|
|
|
|
}
|