1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-20 03:11:04 +00:00
supysonic/frontend/folder.py

104 lines
3.0 KiB
Python
Raw Normal View History

2012-11-17 17:30:30 +00:00
# coding: utf-8
2014-03-02 17:31:32 +00:00
# This file is part of Supysonic.
#
# Supysonic is a Python implementation of the Subsonic server API.
# Copyright (C) 2013 Alban 'spl0k' Féron
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2014-03-16 17:51:19 +00:00
from flask import request, flash, render_template, redirect, url_for, session
2012-11-17 17:30:30 +00:00
import os.path
import uuid
2014-03-16 17:51:19 +00:00
from web import app, store
from db import Folder
2012-11-17 17:30:30 +00:00
from scanner import Scanner
2013-09-05 16:40:43 +00:00
from managers.user import UserManager
from managers.folder import FolderManager
2012-12-09 20:30:37 +00:00
@app.before_request
def check_admin():
if not request.path.startswith('/folder'):
return
2014-03-16 17:51:19 +00:00
if not UserManager.get(store, session.get('userid'))[1].admin:
2012-12-09 20:30:37 +00:00
return redirect(url_for('index'))
2012-11-17 17:30:30 +00:00
@app.route('/folder')
def folder_index():
return render_template('folders.html', folders = Folder.query.filter(Folder.root == True).all())
@app.route('/folder/add', methods = [ 'GET', 'POST' ])
def add_folder():
if request.method == 'GET':
return render_template('addfolder.html')
error = False
(name, path) = map(request.form.get, [ 'name', 'path' ])
if name in (None, ''):
flash('The name is required.')
error = True
if path in (None, ''):
flash('The path is required.')
error = True
if error:
return render_template('addfolder.html')
2013-09-05 15:17:25 +00:00
ret = FolderManager.add(name, path)
if ret != FolderManager.SUCCESS:
flash(FolderManager.error_str(ret))
return render_template('addfolder.html')
2012-11-17 17:30:30 +00:00
flash("Folder '%s' created. You should now run a scan" % name)
return redirect(url_for('folder_index'))
@app.route('/folder/del/<id>')
def del_folder(id):
try:
idid = uuid.UUID(id)
except ValueError:
flash('Invalid folder id')
return redirect(url_for('folder_index'))
2013-09-05 15:17:25 +00:00
ret = FolderManager.delete(idid)
if ret != FolderManager.SUCCESS:
flash(FolderManager.error_str(ret))
else:
flash('Deleted folder')
2012-11-17 17:30:30 +00:00
return redirect(url_for('folder_index'))
@app.route('/folder/scan')
@app.route('/folder/scan/<id>')
def scan_folder(id = None):
s = Scanner(session)
if id is None:
2013-09-05 16:25:33 +00:00
for folder in Folder.query.filter(Folder.root == True):
FolderManager.scan(folder.id, s)
2012-11-17 17:30:30 +00:00
else:
2013-09-05 16:25:33 +00:00
status = FolderManager.scan(id, s)
if status != FolderManager.SUCCESS:
flash(FolderManager.error_str(status))
2012-11-17 17:30:30 +00:00
return redirect(url_for('folder_index'))
added, deleted = s.stats()
2014-03-16 17:51:19 +00:00
store.commit()
2012-11-17 17:30:30 +00:00
flash('Added: %i artists, %i albums, %i tracks' % (added[0], added[1], added[2]))
flash('Deleted: %i artists, %i albums, %i tracks' % (deleted[0], deleted[1], deleted[2]))
return redirect(url_for('folder_index'))