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
Container Registry
Model registry
Operate
Environments
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
Paul Walko
funkwhale
Commits
f4ac0b2d
Verified
Commit
f4ac0b2d
authored
6 years ago
by
Eliot Berriot
Browse files
Options
Downloads
Patches
Plain Diff
Serve view can now serve in-place imported files
parent
58fced26
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
api/funkwhale_api/music/models.py
+20
-0
20 additions, 0 deletions
api/funkwhale_api/music/models.py
api/funkwhale_api/music/views.py
+12
-3
12 additions, 3 deletions
api/funkwhale_api/music/views.py
api/tests/music/test_views.py
+19
-0
19 additions, 0 deletions
api/tests/music/test_views.py
with
51 additions
and
3 deletions
api/funkwhale_api/music/models.py
+
20
−
0
View file @
f4ac0b2d
...
...
@@ -463,6 +463,26 @@ class TrackFile(models.Model):
self
.
mimetype
=
utils
.
guess_mimetype
(
self
.
audio_file
)
return
super
().
save
(
**
kwargs
)
@property
def
serve_from_source_path
(
self
):
if
not
self
.
source
or
not
self
.
source
.
startswith
(
'
file://
'
):
raise
ValueError
(
'
Cannot serve this file from source
'
)
serve_path
=
settings
.
MUSIC_DIRECTORY_SERVE_PATH
prefix
=
settings
.
MUSIC_DIRECTORY_PATH
if
not
serve_path
or
not
prefix
:
raise
ValueError
(
'
You need to specify MUSIC_DIRECTORY_SERVE_PATH and
'
'
MUSIC_DIRECTORY_PATH to serve in-place imported files
'
)
file_path
=
self
.
source
.
replace
(
'
file://
'
,
''
,
1
)
parts
=
os
.
path
.
split
(
file_path
.
replace
(
prefix
,
''
,
1
))
if
parts
[
0
]
==
'
/
'
:
parts
=
parts
[
1
:]
return
os
.
path
.
join
(
serve_path
,
*
parts
)
IMPORT_STATUS_CHOICES
=
(
(
'
pending
'
,
'
Pending
'
),
...
...
This diff is collapsed.
Click to expand it.
api/funkwhale_api/music/views.py
+
12
−
3
View file @
f4ac0b2d
...
...
@@ -224,12 +224,21 @@ class TrackFileViewSet(viewsets.ReadOnlyModelViewSet):
library_track
=
qs
.
get
(
pk
=
library_track
.
pk
)
library_track
.
download_audio
()
audio_file
=
library_track
.
audio_file
file_path
=
'
{}{}
'
.
format
(
settings
.
PROTECT_FILES_PATH
,
audio_file
.
url
)
mt
=
library_track
.
audio_mimetype
elif
audio_file
:
file_path
=
'
{}{}
'
.
format
(
settings
.
PROTECT_FILES_PATH
,
audio_file
.
url
)
elif
f
.
source
and
f
.
source
.
startswith
(
'
file://
'
):
file_path
=
'
{}{}
'
.
format
(
settings
.
PROTECT_FILES_PATH
+
'
/music
'
,
f
.
serve_from_source_path
)
response
=
Response
()
filename
=
f
.
filename
response
[
'
X-Accel-Redirect
'
]
=
"
{}{}
"
.
format
(
settings
.
PROTECT_FILES_PATH
,
audio_file
.
url
)
response
[
'
X-Accel-Redirect
'
]
=
file_path
filename
=
"
filename*=UTF-8
''
{}
"
.
format
(
urllib
.
parse
.
quote
(
filename
))
response
[
"
Content-Disposition
"
]
=
"
attachment; {}
"
.
format
(
filename
)
...
...
This diff is collapsed.
Click to expand it.
api/tests/music/test_views.py
+
19
−
0
View file @
f4ac0b2d
...
...
@@ -93,6 +93,25 @@ def test_can_proxy_remote_track(
assert
library_track
.
audio_file
.
read
()
==
b
'
test
'
def
test_can_serve_in_place_imported_file
(
factories
,
settings
,
api_client
,
r_mock
):
settings
.
PROTECT_AUDIO_FILES
=
False
settings
.
MUSIC_DIRECTORY_SERVE_PATH
=
'
/host/music
'
settings
.
MUSIC_DIRECTORY_PATH
=
'
/music
'
settings
.
MUSIC_DIRECTORY_PATH
=
'
/music
'
track_file
=
factories
[
'
music.TrackFile
'
](
in_place
=
True
,
source
=
'
file:///music/test.ogg
'
)
response
=
api_client
.
get
(
track_file
.
path
)
assert
response
.
status_code
==
200
assert
response
[
'
X-Accel-Redirect
'
]
==
'
{}{}
'
.
format
(
settings
.
PROTECT_FILES_PATH
,
'
/music/host/music/test.ogg
'
)
def
test_can_create_import_from_federation_tracks
(
factories
,
superuser_api_client
,
mocker
):
lts
=
factories
[
'
federation.LibraryTrack
'
].
create_batch
(
size
=
5
)
...
...
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