Created
March 11, 2010 15:54
-
-
Save jonmagic/329261 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SongsController < ApplicationController | |
def index | |
@songs = Song.all(:destroyed_at => nil) | |
@totals = load_totals(@songs) | |
end | |
def new | |
@song = Song.new | |
render :layout => false | |
end | |
def create | |
@song = Song.new(params[:song]) | |
if @song.save | |
flash[:notice] = "Successfully uploaded song." | |
redirect_to root_url | |
else | |
flash[:notice] = "Failed to upload song." | |
redirect_to root_url | |
end | |
end | |
def edit | |
@song = Song.find(params[:id]) | |
@genres = Song.genres | |
render :layout => false | |
end | |
def update | |
@song = Song.find(params[:id]) | |
if @song.update_attributes(params[:song]) | |
flash[:notice] = "Successfully updated song tags." | |
redirect_to root_url | |
else | |
flash[:notice] = "Unable to update song tags." | |
redirect_to root_url | |
end | |
end | |
def import | |
Navvy::Job.enqueue(Song, :import_from_folder) | |
render :nothing => true, :response => 200 | |
end | |
def destroy | |
@song = Song.find(params[:id]) | |
@song.destroy | |
respond_to do |format| | |
format.json { render :nothing => true, :response => 200 } | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment