Fixed error message displayed for FileWillBeUploaded rejections (#10535)

#### Summary
Fixed the error message displayed when an uploading file gets rejected by a plugin's FileWillBeUploaded hook.

#### Ticket Link
https://mattermost.atlassian.net/browse/MM-14803
Этот коммит содержится в:
Lev
2019-04-01 09:24:37 -07:00
коммит произвёл Jesse Hallam
родитель 0e534c8a49
Коммит 0f062367b5
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@@ -648,8 +648,8 @@ func (t *uploadFileTask) runPlugins() *model.AppError {
replacementInfo, rejectionReason := hooks.FileWillBeUploaded(pluginContext,
t.fileinfo, t.newReader(), buf)
if rejectionReason != "" {
rejectionError = t.newAppError("api.file.upload_file.read_request.app_error",
rejectionReason, http.StatusBadRequest)
rejectionError = t.newAppError("api.file.upload_file.rejected_by_plugin.app_error",
rejectionReason, http.StatusForbidden, "Reason", rejectionReason)
return false
}
if replacementInfo != nil {

Просмотреть файл

@@ -1252,6 +1252,10 @@
"id": "api.file.upload_file.too_large_detailed.app_error",
"translation": "Unable to upload file {{.Filename}}. {{.Length}} bytes exceeds the maximum allowed {{.Limit}} bytes."
},
{
"id": "api.file.upload_file.rejected_by_plugin.app_error",
"translation": "Unable to upload file {{.Filename}}. Rejected by plugin: {{.Reason}}"
},
{
"id": "api.file.write_file.s3.app_error",
"translation": "Encountered an error writing to S3"