Automatic Merge
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
562388501e
Коммит
c7ae090dad
@@ -381,6 +381,10 @@ type AppIface interface {
|
|||||||
// upload, returning a rejection error. In this case FileInfo would have
|
// upload, returning a rejection error. In this case FileInfo would have
|
||||||
// contained the last "good" FileInfo before the execution of that plugin.
|
// contained the last "good" FileInfo before the execution of that plugin.
|
||||||
UploadFileX(c *request.Context, channelID, name string, input io.Reader, opts ...func(*UploadFileTask)) (*model.FileInfo, *model.AppError)
|
UploadFileX(c *request.Context, channelID, name string, input io.Reader, opts ...func(*UploadFileTask)) (*model.FileInfo, *model.AppError)
|
||||||
|
// Uploads some files to the given team and channel as the given user. files and filenames should have
|
||||||
|
// the same length. clientIds should either not be provided or have the same length as files and filenames.
|
||||||
|
// The provided files should be closed by the caller so that they are not leaked.
|
||||||
|
UploadFiles(c *request.Context, teamID string, channelID string, userID string, files []io.ReadCloser, filenames []string, clientIds []string, now time.Time) (*model.FileUploadResponse, *model.AppError)
|
||||||
// UserIsInAdminRoleGroup returns true at least one of the user's groups are configured to set the members as
|
// UserIsInAdminRoleGroup returns true at least one of the user's groups are configured to set the members as
|
||||||
// admins in the given syncable.
|
// admins in the given syncable.
|
||||||
UserIsInAdminRoleGroup(userID, syncableID string, syncableType model.GroupSyncableType) (bool, *model.AppError)
|
UserIsInAdminRoleGroup(userID, syncableID string, syncableType model.GroupSyncableType) (bool, *model.AppError)
|
||||||
@@ -1128,6 +1132,7 @@ type AppIface interface {
|
|||||||
UpdateUserRolesWithUser(c request.CTX, user *model.User, newRoles string, sendWebSocketEvent bool) (*model.User, *model.AppError)
|
UpdateUserRolesWithUser(c request.CTX, user *model.User, newRoles string, sendWebSocketEvent bool) (*model.User, *model.AppError)
|
||||||
UploadData(c *request.Context, us *model.UploadSession, rd io.Reader) (*model.FileInfo, *model.AppError)
|
UploadData(c *request.Context, us *model.UploadSession, rd io.Reader) (*model.FileInfo, *model.AppError)
|
||||||
UploadEmojiImage(id string, imageData *multipart.FileHeader) *model.AppError
|
UploadEmojiImage(id string, imageData *multipart.FileHeader) *model.AppError
|
||||||
|
UploadMultipartFiles(c *request.Context, teamID string, channelID string, userID string, fileHeaders []*multipart.FileHeader, clientIds []string, now time.Time) (*model.FileUploadResponse, *model.AppError)
|
||||||
UpsertGroupMember(groupID string, userID string) (*model.GroupMember, *model.AppError)
|
UpsertGroupMember(groupID string, userID string) (*model.GroupMember, *model.AppError)
|
||||||
UpsertGroupMembers(groupID string, userIDs []string) ([]*model.GroupMember, *model.AppError)
|
UpsertGroupMembers(groupID string, userIDs []string) ([]*model.GroupMember, *model.AppError)
|
||||||
UpsertGroupSyncable(groupSyncable *model.GroupSyncable) (*model.GroupSyncable, *model.AppError)
|
UpsertGroupSyncable(groupSyncable *model.GroupSyncable) (*model.GroupSyncable, *model.AppError)
|
||||||
|
|||||||
71
app/file.go
71
app/file.go
@@ -12,6 +12,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"image"
|
"image"
|
||||||
"io"
|
"io"
|
||||||
|
"mime/multipart"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
@@ -452,6 +453,76 @@ func GeneratePublicLinkHash(fileID, salt string) string {
|
|||||||
return base64.RawURLEncoding.EncodeToString(hash.Sum(nil))
|
return base64.RawURLEncoding.EncodeToString(hash.Sum(nil))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (a *App) UploadMultipartFiles(c *request.Context, teamID string, channelID string, userID string, fileHeaders []*multipart.FileHeader, clientIds []string, now time.Time) (*model.FileUploadResponse, *model.AppError) {
|
||||||
|
files := make([]io.ReadCloser, len(fileHeaders))
|
||||||
|
filenames := make([]string, len(fileHeaders))
|
||||||
|
|
||||||
|
for i, fileHeader := range fileHeaders {
|
||||||
|
file, fileErr := fileHeader.Open()
|
||||||
|
if fileErr != nil {
|
||||||
|
return nil, model.NewAppError("UploadFiles", "api.file.upload_file.read_request.app_error",
|
||||||
|
map[string]any{"Filename": fileHeader.Filename}, fileErr.Error(), http.StatusBadRequest)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Will be closed after UploadFiles returns
|
||||||
|
defer file.Close()
|
||||||
|
|
||||||
|
files[i] = file
|
||||||
|
filenames[i] = fileHeader.Filename
|
||||||
|
}
|
||||||
|
|
||||||
|
return a.UploadFiles(c, teamID, channelID, userID, files, filenames, clientIds, now)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Uploads some files to the given team and channel as the given user. files and filenames should have
|
||||||
|
// the same length. clientIds should either not be provided or have the same length as files and filenames.
|
||||||
|
// The provided files should be closed by the caller so that they are not leaked.
|
||||||
|
func (a *App) UploadFiles(c *request.Context, teamID string, channelID string, userID string, files []io.ReadCloser, filenames []string, clientIds []string, now time.Time) (*model.FileUploadResponse, *model.AppError) {
|
||||||
|
if *a.Config().FileSettings.DriverName == "" {
|
||||||
|
return nil, model.NewAppError("UploadFiles", "api.file.upload_file.storage.app_error", nil, "", http.StatusNotImplemented)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(filenames) != len(files) || (len(clientIds) > 0 && len(clientIds) != len(files)) {
|
||||||
|
return nil, model.NewAppError("UploadFiles", "api.file.upload_file.incorrect_number_of_files.app_error", nil, "", http.StatusBadRequest)
|
||||||
|
}
|
||||||
|
|
||||||
|
resStruct := &model.FileUploadResponse{
|
||||||
|
FileInfos: []*model.FileInfo{},
|
||||||
|
ClientIds: []string{},
|
||||||
|
}
|
||||||
|
|
||||||
|
previewPathList := []string{}
|
||||||
|
thumbnailPathList := []string{}
|
||||||
|
imageDataList := [][]byte{}
|
||||||
|
|
||||||
|
for i, file := range files {
|
||||||
|
buf := bytes.NewBuffer(nil)
|
||||||
|
io.Copy(buf, file)
|
||||||
|
data := buf.Bytes()
|
||||||
|
|
||||||
|
info, data, err := a.DoUploadFileExpectModification(c, now, teamID, channelID, userID, filenames[i], data)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if info.PreviewPath != "" || info.ThumbnailPath != "" {
|
||||||
|
previewPathList = append(previewPathList, info.PreviewPath)
|
||||||
|
thumbnailPathList = append(thumbnailPathList, info.ThumbnailPath)
|
||||||
|
imageDataList = append(imageDataList, data)
|
||||||
|
}
|
||||||
|
|
||||||
|
resStruct.FileInfos = append(resStruct.FileInfos, info)
|
||||||
|
|
||||||
|
if len(clientIds) > 0 {
|
||||||
|
resStruct.ClientIds = append(resStruct.ClientIds, clientIds[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a.HandleImages(previewPathList, thumbnailPathList, imageDataList)
|
||||||
|
|
||||||
|
return resStruct, nil
|
||||||
|
}
|
||||||
|
|
||||||
// UploadFile uploads a single file in form of a completely constructed byte array for a channel.
|
// UploadFile uploads a single file in form of a completely constructed byte array for a channel.
|
||||||
func (a *App) UploadFile(c *request.Context, data []byte, channelID string, filename string) (*model.FileInfo, *model.AppError) {
|
func (a *App) UploadFile(c *request.Context, data []byte, channelID string, filename string) (*model.FileInfo, *model.AppError) {
|
||||||
_, err := a.GetChannel(c, channelID)
|
_, err := a.GetChannel(c, channelID)
|
||||||
|
|||||||
@@ -9,6 +9,8 @@ import (
|
|||||||
"image"
|
"image"
|
||||||
"image/gif"
|
"image/gif"
|
||||||
"image/jpeg"
|
"image/jpeg"
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
@@ -128,6 +130,21 @@ func BenchmarkUploadFile(b *testing.B) {
|
|||||||
th.App.RemoveFile(info.Path)
|
th.App.RemoveFile(info.Path)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "image UploadFiles",
|
||||||
|
f: func(b *testing.B, n int, data []byte, ext string) {
|
||||||
|
resp, err := th.App.UploadFiles(th.Context, teamID, channelID, userID,
|
||||||
|
[]io.ReadCloser{ioutil.NopCloser(bytes.NewReader(data))},
|
||||||
|
[]string{fmt.Sprintf("BenchmarkDoUploadFiles-%d%s", n, ext)},
|
||||||
|
[]string{},
|
||||||
|
time.Now())
|
||||||
|
if err != nil {
|
||||||
|
b.Fatal(err)
|
||||||
|
}
|
||||||
|
th.App.Srv().Store.FileInfo().PermanentDelete(resp.FileInfos[0].Id)
|
||||||
|
th.App.RemoveFile(resp.FileInfos[0].Path)
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "image UploadFileX Content-Length",
|
title: "image UploadFileX Content-Length",
|
||||||
f: func(b *testing.B, n int, data []byte, ext string) {
|
f: func(b *testing.B, n int, data []byte, ext string) {
|
||||||
|
|||||||
@@ -17813,6 +17813,50 @@ func (a *OpenTracingAppLayer) UploadFileX(c *request.Context, channelID string,
|
|||||||
return resultVar0, resultVar1
|
return resultVar0, resultVar1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (a *OpenTracingAppLayer) UploadFiles(c *request.Context, teamID string, channelID string, userID string, files []io.ReadCloser, filenames []string, clientIds []string, now time.Time) (*model.FileUploadResponse, *model.AppError) {
|
||||||
|
origCtx := a.ctx
|
||||||
|
span, newCtx := tracing.StartSpanWithParentByContext(a.ctx, "app.UploadFiles")
|
||||||
|
|
||||||
|
a.ctx = newCtx
|
||||||
|
a.app.Srv().Store.SetContext(newCtx)
|
||||||
|
defer func() {
|
||||||
|
a.app.Srv().Store.SetContext(origCtx)
|
||||||
|
a.ctx = origCtx
|
||||||
|
}()
|
||||||
|
|
||||||
|
defer span.Finish()
|
||||||
|
resultVar0, resultVar1 := a.app.UploadFiles(c, teamID, channelID, userID, files, filenames, clientIds, now)
|
||||||
|
|
||||||
|
if resultVar1 != nil {
|
||||||
|
span.LogFields(spanlog.Error(resultVar1))
|
||||||
|
ext.Error.Set(span, true)
|
||||||
|
}
|
||||||
|
|
||||||
|
return resultVar0, resultVar1
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *OpenTracingAppLayer) UploadMultipartFiles(c *request.Context, teamID string, channelID string, userID string, fileHeaders []*multipart.FileHeader, clientIds []string, now time.Time) (*model.FileUploadResponse, *model.AppError) {
|
||||||
|
origCtx := a.ctx
|
||||||
|
span, newCtx := tracing.StartSpanWithParentByContext(a.ctx, "app.UploadMultipartFiles")
|
||||||
|
|
||||||
|
a.ctx = newCtx
|
||||||
|
a.app.Srv().Store.SetContext(newCtx)
|
||||||
|
defer func() {
|
||||||
|
a.app.Srv().Store.SetContext(origCtx)
|
||||||
|
a.ctx = origCtx
|
||||||
|
}()
|
||||||
|
|
||||||
|
defer span.Finish()
|
||||||
|
resultVar0, resultVar1 := a.app.UploadMultipartFiles(c, teamID, channelID, userID, fileHeaders, clientIds, now)
|
||||||
|
|
||||||
|
if resultVar1 != nil {
|
||||||
|
span.LogFields(spanlog.Error(resultVar1))
|
||||||
|
ext.Error.Set(span, true)
|
||||||
|
}
|
||||||
|
|
||||||
|
return resultVar0, resultVar1
|
||||||
|
}
|
||||||
|
|
||||||
func (a *OpenTracingAppLayer) UpsertGroupMember(groupID string, userID string) (*model.GroupMember, *model.AppError) {
|
func (a *OpenTracingAppLayer) UpsertGroupMember(groupID string, userID string) (*model.GroupMember, *model.AppError) {
|
||||||
origCtx := a.ctx
|
origCtx := a.ctx
|
||||||
span, newCtx := tracing.StartSpanWithParentByContext(a.ctx, "app.UpsertGroupMember")
|
span, newCtx := tracing.StartSpanWithParentByContext(a.ctx, "app.UpsertGroupMember")
|
||||||
|
|||||||
@@ -462,12 +462,15 @@ func TestHookFileWillBeUploaded(t *testing.T) {
|
|||||||
}, th.App, func(*model.Manifest) plugin.API { return &mockAPI })
|
}, th.App, func(*model.Manifest) plugin.API { return &mockAPI })
|
||||||
defer tearDown()
|
defer tearDown()
|
||||||
|
|
||||||
_, err := th.App.UploadFile(th.Context,
|
_, err := th.App.UploadFiles(th.Context,
|
||||||
[]byte("inputfile"),
|
"noteam",
|
||||||
th.BasicChannel.Id,
|
th.BasicChannel.Id,
|
||||||
"testhook.txt",
|
th.BasicUser.Id,
|
||||||
|
[]io.ReadCloser{ioutil.NopCloser(bytes.NewBufferString("inputfile"))},
|
||||||
|
[]string{"testhook.txt"},
|
||||||
|
[]string{},
|
||||||
|
time.Now(),
|
||||||
)
|
)
|
||||||
|
|
||||||
if assert.NotNil(t, err) {
|
if assert.NotNil(t, err) {
|
||||||
assert.Equal(t, "File rejected by plugin. rejected", err.Message)
|
assert.Equal(t, "File rejected by plugin. rejected", err.Message)
|
||||||
}
|
}
|
||||||
@@ -512,12 +515,15 @@ func TestHookFileWillBeUploaded(t *testing.T) {
|
|||||||
}, th.App, func(*model.Manifest) plugin.API { return &mockAPI })
|
}, th.App, func(*model.Manifest) plugin.API { return &mockAPI })
|
||||||
defer tearDown()
|
defer tearDown()
|
||||||
|
|
||||||
_, err := th.App.UploadFile(th.Context,
|
_, err := th.App.UploadFiles(th.Context,
|
||||||
[]byte("inputfile"),
|
"noteam",
|
||||||
th.BasicChannel.Id,
|
th.BasicChannel.Id,
|
||||||
"testhook.txt",
|
th.BasicUser.Id,
|
||||||
|
[]io.ReadCloser{ioutil.NopCloser(bytes.NewBufferString("inputfile"))},
|
||||||
|
[]string{"testhook.txt"},
|
||||||
|
[]string{},
|
||||||
|
time.Now(),
|
||||||
)
|
)
|
||||||
|
|
||||||
if assert.NotNil(t, err) {
|
if assert.NotNil(t, err) {
|
||||||
assert.Equal(t, "File rejected by plugin. rejected", err.Message)
|
assert.Equal(t, "File rejected by plugin. rejected", err.Message)
|
||||||
}
|
}
|
||||||
@@ -556,16 +562,20 @@ func TestHookFileWillBeUploaded(t *testing.T) {
|
|||||||
}, th.App, func(*model.Manifest) plugin.API { return &mockAPI })
|
}, th.App, func(*model.Manifest) plugin.API { return &mockAPI })
|
||||||
defer tearDown()
|
defer tearDown()
|
||||||
|
|
||||||
response, err := th.App.UploadFile(th.Context,
|
response, err := th.App.UploadFiles(th.Context,
|
||||||
[]byte("inputfile"),
|
"noteam",
|
||||||
th.BasicChannel.Id,
|
th.BasicChannel.Id,
|
||||||
"testhook.txt",
|
th.BasicUser.Id,
|
||||||
|
[]io.ReadCloser{ioutil.NopCloser(bytes.NewBufferString("inputfile"))},
|
||||||
|
[]string{"testhook.txt"},
|
||||||
|
[]string{},
|
||||||
|
time.Now(),
|
||||||
)
|
)
|
||||||
|
|
||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
assert.NotNil(t, response)
|
assert.NotNil(t, response)
|
||||||
|
assert.Equal(t, 1, len(response.FileInfos))
|
||||||
|
|
||||||
fileID := response.Id
|
fileID := response.FileInfos[0].Id
|
||||||
fileInfo, err := th.App.GetFileInfo(fileID)
|
fileInfo, err := th.App.GetFileInfo(fileID)
|
||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
assert.NotNil(t, fileInfo)
|
assert.NotNil(t, fileInfo)
|
||||||
@@ -628,14 +638,19 @@ func TestHookFileWillBeUploaded(t *testing.T) {
|
|||||||
}, th.App, func(*model.Manifest) plugin.API { return &mockAPI })
|
}, th.App, func(*model.Manifest) plugin.API { return &mockAPI })
|
||||||
defer tearDown()
|
defer tearDown()
|
||||||
|
|
||||||
response, err := th.App.UploadFile(th.Context,
|
response, err := th.App.UploadFiles(th.Context,
|
||||||
[]byte("inputfile"),
|
"noteam",
|
||||||
th.BasicChannel.Id,
|
th.BasicChannel.Id,
|
||||||
"testhook.txt",
|
th.BasicUser.Id,
|
||||||
|
[]io.ReadCloser{ioutil.NopCloser(bytes.NewBufferString("inputfile"))},
|
||||||
|
[]string{"testhook.txt"},
|
||||||
|
[]string{},
|
||||||
|
time.Now(),
|
||||||
)
|
)
|
||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
assert.NotNil(t, response)
|
assert.NotNil(t, response)
|
||||||
fileID := response.Id
|
assert.Equal(t, 1, len(response.FileInfos))
|
||||||
|
fileID := response.FileInfos[0].Id
|
||||||
|
|
||||||
fileInfo, err := th.App.GetFileInfo(fileID)
|
fileInfo, err := th.App.GetFileInfo(fileID)
|
||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
|
|||||||
@@ -1857,6 +1857,10 @@
|
|||||||
"id": "api.file.upload_file.incorrect_number_of_client_ids.app_error",
|
"id": "api.file.upload_file.incorrect_number_of_client_ids.app_error",
|
||||||
"translation": "Unable to upload file(s). Have {{.NumClientIds}} client_ids for {{.NumFiles}} files."
|
"translation": "Unable to upload file(s). Have {{.NumClientIds}} client_ids for {{.NumFiles}} files."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "api.file.upload_file.incorrect_number_of_files.app_error",
|
||||||
|
"translation": "Unable to upload files. Incorrect number of files specified."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "api.file.upload_file.large_image.app_error",
|
"id": "api.file.upload_file.large_image.app_error",
|
||||||
"translation": "File above maximum dimensions could not be uploaded: {{.Filename}}"
|
"translation": "File above maximum dimensions could not be uploaded: {{.Filename}}"
|
||||||
|
|||||||
@@ -4,7 +4,6 @@
|
|||||||
package filestore
|
package filestore
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
|
||||||
"context"
|
"context"
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"io"
|
"io"
|
||||||
@@ -366,13 +365,7 @@ func (b *S3FileBackend) WriteFile(fr io.Reader, path string) (int64, error) {
|
|||||||
ctx, cancel := context.WithTimeout(context.Background(), b.timeout)
|
ctx, cancel := context.WithTimeout(context.Background(), b.timeout)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
options := s3PutOptions(b.encrypt, contentType)
|
options := s3PutOptions(b.encrypt, contentType)
|
||||||
|
info, err := b.client.PutObject(ctx, b.bucket, path, fr, -1, options)
|
||||||
objSize := -1
|
|
||||||
if buf, ok := fr.(*bytes.Buffer); ok {
|
|
||||||
objSize = buf.Len()
|
|
||||||
}
|
|
||||||
|
|
||||||
info, err := b.client.PutObject(ctx, b.bucket, path, fr, int64(objSize), options)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return info.Size, errors.Wrapf(err, "unable write the data in the file %s", path)
|
return info.Size, errors.Wrapf(err, "unable write the data in the file %s", path)
|
||||||
}
|
}
|
||||||
@@ -400,11 +393,7 @@ func (b *S3FileBackend) AppendFile(fr io.Reader, path string) (int64, error) {
|
|||||||
partName := fp + ".part"
|
partName := fp + ".part"
|
||||||
ctx2, cancel2 := context.WithTimeout(context.Background(), b.timeout)
|
ctx2, cancel2 := context.WithTimeout(context.Background(), b.timeout)
|
||||||
defer cancel2()
|
defer cancel2()
|
||||||
objSize := -1
|
info, err := b.client.PutObject(ctx2, b.bucket, partName, fr, -1, options)
|
||||||
if buf, ok := fr.(*bytes.Buffer); ok {
|
|
||||||
objSize = buf.Len()
|
|
||||||
}
|
|
||||||
info, err := b.client.PutObject(ctx2, b.bucket, partName, fr, int64(objSize), options)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return 0, errors.Wrapf(err, "unable append the data in the file %s", path)
|
return 0, errors.Wrapf(err, "unable append the data in the file %s", path)
|
||||||
}
|
}
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user