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
7aa299e5
Verified
Commit
7aa299e5
authored
5 years ago
by
Eliot Berriot
Browse files
Options
Downloads
Patches
Plain Diff
See #170: ensure fetch works properly on tracks with public upload
parent
9e68aea7
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/music/spa_views.py
+5
-3
5 additions, 3 deletions
api/funkwhale_api/music/spa_views.py
api/tests/common/test_middleware.py
+2
-0
2 additions, 0 deletions
api/tests/common/test_middleware.py
with
7 additions
and
3 deletions
api/funkwhale_api/music/spa_views.py
+
5
−
3
View file @
7aa299e5
...
...
@@ -33,8 +33,12 @@ def library_track(request, pk, redirect_to_ap):
except
models
.
Track
.
DoesNotExist
:
return
[]
playable_uploads
=
obj
.
uploads
.
playable_by
(
None
).
order_by
(
"
id
"
)
upload
=
playable_uploads
.
first
()
if
redirect_to_ap
:
raise
middleware
.
ApiRedirect
(
obj
.
fid
)
redirect_url
=
upload
.
fid
if
upload
else
obj
.
fid
raise
middleware
.
ApiRedirect
(
redirect_url
)
track_url
=
utils
.
join_url
(
settings
.
FUNKWHALE_URL
,
...
...
@@ -84,8 +88,6 @@ def library_track(request, pk, redirect_to_ap):
"
content
"
:
obj
.
album
.
attachment_cover
.
download_url_medium_square_crop
,
}
)
playable_uploads
=
obj
.
uploads
.
playable_by
(
None
).
order_by
(
"
id
"
)
upload
=
playable_uploads
.
first
()
if
upload
:
metas
.
append
(
{
...
...
This diff is collapsed.
Click to expand it.
api/tests/common/test_middleware.py
+
2
−
0
View file @
7aa299e5
...
...
@@ -394,6 +394,8 @@ def test_get_request_head_tags_calls_view_with_proper_arg_when_accept_header_set
(
"
music.Album
"
,
{},
"
library_album
"
,
"
pk
"
,
"
pk
"
,),
(
"
music.Track
"
,
{},
"
library_track
"
,
"
pk
"
,
"
pk
"
,),
(
"
music.Library
"
,
{},
"
library_library
"
,
"
uuid
"
,
"
uuid
"
,),
# when a track as a public upload, we should redirect to the upload instead
(
"
music.Upload
"
,
{
"
playable
"
:
True
},
"
library_track
"
,
"
pk
"
,
"
track.pk
"
),
],
)
def
test_spa_views_raise_api_redirect_when_accept_json_set
(
...
...
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