# coding: utf-8 # 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 . from flask import request, session, flash, render_template, redirect, url_for import uuid from web import app, store from db import Playlist @app.route('/playlist') def playlist_index(): return render_template('playlists.html', mine = store.find(Playlist, Playlist.user_id == uuid.UUID(session.get('userid'))), others = store.find(Playlist, Playlist.user_id != uuid.UUID(session.get('userid')))) @app.route('/playlist/') def playlist_details(uid): try: uid = uuid.UUID(uid) if type(uid) in (str, unicode) else uid except: flash('Invalid playlist id') return redirect(url_for('playlist_index')) playlist = store.get(Playlist, uid) if not playlist: flash('Unknown playlist') return redirect(url_for('playlist_index')) return render_template('playlist.html', playlist = playlist) @app.route('/playlist/', methods = [ 'POST' ]) def playlist_update(uid): try: uid = uuid.UUID(uid) except: flash('Invalid playlist id') return redirect(url_for('playlist_index')) playlist = store.get(Playlist, uid) if not playlist: flash('Unknown playlist') return redirect(url_for('playlist_index')) if str(playlist.user_id) != session.get('userid'): flash("You're not allowed to edit this playlist") elif not request.form.get('name'): flash('Missing playlist name') else: playlist.name = request.form.get('name') playlist.public = request.form.get('public') in (True, 'True', 1, '1', 'on', 'checked') store.commit() flash('Playlist updated.') return playlist_details(uid) @app.route('/playlist/del/') def playlist_delete(uid): try: uid = uuid.UUID(uid) except: flash('Invalid playlist id') return redirect(url_for('playlist_index')) playlist = store.get(Playlist, uid) if not playlist: flash('Unknown playlist') elif str(playlist.user_id) != session.get('userid'): flash("You're not allowed to delete this playlist") else: store.remove(playlist) store.commit() flash('Playlist deleted') return redirect(url_for('playlist_index'))