2021-09-08 20:49:30 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package attachment
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2021-09-23 21:15:36 +05:30
|
|
|
"context"
|
2021-09-08 20:49:30 +05:30
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
2021-09-19 17:19:59 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-19 19:09:57 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-09-08 20:49:30 +05:30
|
|
|
"code.gitea.io/gitea/modules/storage"
|
|
|
|
"code.gitea.io/gitea/modules/upload"
|
2021-10-25 02:42:43 +05:30
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-09-08 20:49:30 +05:30
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NewAttachment creates a new attachment object, but do not verify.
|
2021-11-19 19:09:57 +05:30
|
|
|
func NewAttachment(attach *repo_model.Attachment, file io.Reader) (*repo_model.Attachment, error) {
|
2021-09-08 20:49:30 +05:30
|
|
|
if attach.RepoID == 0 {
|
|
|
|
return nil, fmt.Errorf("attachment %s should belong to a repository", attach.Name)
|
|
|
|
}
|
|
|
|
|
2021-09-23 21:15:36 +05:30
|
|
|
err := db.WithTx(func(ctx context.Context) error {
|
2021-09-08 20:49:30 +05:30
|
|
|
attach.UUID = uuid.New().String()
|
|
|
|
size, err := storage.Attachments.Save(attach.RelativePath(), file, -1)
|
|
|
|
if err != nil {
|
2022-10-25 00:59:17 +05:30
|
|
|
return fmt.Errorf("Create: %w", err)
|
2021-09-08 20:49:30 +05:30
|
|
|
}
|
|
|
|
attach.Size = size
|
|
|
|
|
2021-09-19 17:19:59 +05:30
|
|
|
return db.Insert(ctx, attach)
|
2021-09-08 20:49:30 +05:30
|
|
|
})
|
|
|
|
|
|
|
|
return attach, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// UploadAttachment upload new attachment into storage and update database
|
2021-12-20 10:11:31 +05:30
|
|
|
func UploadAttachment(file io.Reader, actorID, repoID, releaseID int64, fileName, allowedTypes string) (*repo_model.Attachment, error) {
|
2021-09-08 20:49:30 +05:30
|
|
|
buf := make([]byte, 1024)
|
2021-10-25 02:42:43 +05:30
|
|
|
n, _ := util.ReadAtMost(file, buf)
|
|
|
|
buf = buf[:n]
|
2021-09-08 20:49:30 +05:30
|
|
|
|
|
|
|
if err := upload.Verify(buf, fileName, allowedTypes); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-11-19 19:09:57 +05:30
|
|
|
return NewAttachment(&repo_model.Attachment{
|
2021-09-08 20:49:30 +05:30
|
|
|
RepoID: repoID,
|
|
|
|
UploaderID: actorID,
|
|
|
|
ReleaseID: releaseID,
|
|
|
|
Name: fileName,
|
|
|
|
}, io.MultiReader(bytes.NewReader(buf), file))
|
|
|
|
}
|