Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
matrix-media-repo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
matrix-media-repo
Commits
1168a7f6
Commit
1168a7f6
authored
1 year ago
by
Travis Ralston
Browse files
Options
Downloads
Patches
Plain Diff
Return referenced errors from async upload
parent
dbda3d3c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
api/r0/upload_async.go
+4
-4
4 additions, 4 deletions
api/r0/upload_async.go
with
4 additions
and
4 deletions
api/r0/upload_async.go
+
4
−
4
View file @
1168a7f6
...
...
@@ -28,7 +28,7 @@ func UploadMediaAsync(r *http.Request, rctx rcontext.RequestContext, user _apime
})
if
r
.
Host
!=
server
{
return
_responses
.
ErrorResponse
{
return
&
_responses
.
ErrorResponse
{
Code
:
common
.
ErrCodeNotFound
,
Message
:
"Upload request is for another domain."
,
InternalCode
:
common
.
ErrCodeForbidden
,
...
...
@@ -51,19 +51,19 @@ func UploadMediaAsync(r *http.Request, rctx rcontext.RequestContext, user _apime
if
errors
.
Is
(
err
,
common
.
ErrQuotaExceeded
)
{
return
_responses
.
QuotaExceeded
()
}
else
if
errors
.
Is
(
err
,
common
.
ErrAlreadyUploaded
)
{
return
_responses
.
ErrorResponse
{
return
&
_responses
.
ErrorResponse
{
Code
:
common
.
ErrCodeCannotOverwrite
,
Message
:
"This media has already been uploaded."
,
InternalCode
:
common
.
ErrCodeCannotOverwrite
,
}
}
else
if
errors
.
Is
(
err
,
common
.
ErrWrongUser
)
{
return
_responses
.
ErrorResponse
{
return
&
_responses
.
ErrorResponse
{
Code
:
common
.
ErrCodeForbidden
,
Message
:
"You do not have permission to upload this media."
,
InternalCode
:
common
.
ErrCodeForbidden
,
}
}
else
if
errors
.
Is
(
err
,
common
.
ErrExpired
)
{
return
_responses
.
ErrorResponse
{
return
&
_responses
.
ErrorResponse
{
Code
:
common
.
ErrCodeNotFound
,
Message
:
"Media expired or not found."
,
InternalCode
:
common
.
ErrCodeNotFound
,
...
...
This diff is collapsed.
Click to expand it.
MickGe
@mickge
mentioned in commit
13908a95
·
1 year ago
mentioned in commit
13908a95
mentioned in commit 13908a9584f7957b77a51e5ed8a3b1a2d5e93a8f
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment