Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
funkwhale
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andy Craze
funkwhale
Commits
96086df1
Unverified
Commit
96086df1
authored
4 years ago
by
Agate
💬
Browse files
Options
Downloads
Patches
Plain Diff
Fixed attachments URL not honoring media URL
parent
975e281d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
api/funkwhale_api/common/models.py
+2
-2
2 additions, 2 deletions
api/funkwhale_api/common/models.py
api/funkwhale_api/common/utils.py
+11
-0
11 additions, 0 deletions
api/funkwhale_api/common/utils.py
with
13 additions
and
2 deletions
api/funkwhale_api/common/models.py
+
2
−
2
View file @
96086df1
...
...
@@ -256,14 +256,14 @@ class Attachment(models.Model):
@property
def
download_url_original
(
self
):
if
self
.
file
:
return
federation_
utils
.
full
_url
(
self
.
file
.
url
)
return
utils
.
media
_url
(
self
.
file
.
url
)
proxy_url
=
reverse
(
"
api:v1:attachments-proxy
"
,
kwargs
=
{
"
uuid
"
:
self
.
uuid
})
return
federation_utils
.
full_url
(
proxy_url
+
"
?next=original
"
)
@property
def
download_url_medium_square_crop
(
self
):
if
self
.
file
:
return
federation_
utils
.
full
_url
(
self
.
file
.
crop
[
"
200x200
"
].
url
)
return
utils
.
media
_url
(
self
.
file
.
crop
[
"
200x200
"
].
url
)
proxy_url
=
reverse
(
"
api:v1:attachments-proxy
"
,
kwargs
=
{
"
uuid
"
:
self
.
uuid
})
return
federation_utils
.
full_url
(
proxy_url
+
"
?next=medium_square_crop
"
)
...
...
This diff is collapsed.
Click to expand it.
api/funkwhale_api/common/utils.py
+
11
−
0
View file @
96086df1
...
...
@@ -134,6 +134,17 @@ def join_url(start, end):
return
start
+
end
def
media_url
(
path
):
if
settings
.
MEDIA_URL
.
startswith
(
"
http://
"
)
or
settings
.
MEDIA_URL
.
startswith
(
"
https://
"
):
return
join_url
(
settings
.
MEDIA_URL
,
path
)
from
funkwhale_api.federation
import
utils
as
federation_utils
return
federation_utils
.
full_url
(
path
)
def
spa_reverse
(
name
,
args
=
[],
kwargs
=
{}):
return
urls
.
reverse
(
name
,
urlconf
=
settings
.
SPA_URLCONF
,
args
=
args
,
kwargs
=
kwargs
)
...
...
This diff is collapsed.
Click to expand it.
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