Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
django-panik-nonstop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
radiopanik
django-panik-nonstop
Commits
2799ae80
Commit
2799ae80
authored
Oct 03, 2017
by
fred
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename file to have date/artist/title
parent
49517623
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
nonstop/views.py
nonstop/views.py
+13
-4
No files found.
nonstop/views.py
View file @
2799ae80
...
...
@@ -174,14 +174,23 @@ class UploadTracksView(FormView):
return
self
.
form_invalid
(
form
)
for
f
in
tracks
:
metadata
=
metadatas
[
f
.
name
]
artist_name
=
metadata
.
get
(
'artist'
)[
0
]
track_title
=
metadata
.
get
(
'title'
)[
0
]
monthdir
=
datetime
.
datetime
.
today
()
.
strftime
(
'
%
Y-
%
m'
)
filepath
=
'
%
s/
%
s'
%
(
monthdir
,
f
.
name
)
filepath
=
'
%
s/
%
s -
%
s -
%
s
%
s'
%
(
monthdir
,
datetime
.
datetime
.
today
()
.
strftime
(
'
%
y
%
m
%
d'
),
artist_name
[:
50
]
.
replace
(
'/'
,
' '
)
.
strip
(),
track_title
[:
80
]
.
replace
(
'/'
,
' '
)
.
strip
(),
os
.
path
.
splitext
(
f
.
name
)[
-
1
])
default_storage
.
save
(
os
.
path
.
join
(
'nonstop'
,
'tracks'
,
filepath
),
content
=
f
)
nonstop_file
=
NonstopFile
()
nonstop_file
.
set_track_filepath
(
filepath
)
metadata
=
metadatas
[
f
.
name
]
artist
,
created
=
Artist
.
objects
.
get_or_create
(
name
=
metadata
.
get
(
'artist'
)[
0
])
track
,
created
=
Track
.
objects
.
get_or_create
(
title
=
metadata
.
get
(
'title'
)[
0
],
artist
=
artist
)
artist
,
created
=
Artist
.
objects
.
get_or_create
(
name
=
artist_name
)
track
,
created
=
Track
.
objects
.
get_or_create
(
title
=
track_title
,
artist
=
artist
)
nonstop_file
.
track
=
track
nonstop_file
.
save
()
if
request
.
POST
.
get
(
'nonstop_zone'
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment