52 lines
1.2 KiB
Ruby
52 lines
1.2 KiB
Ruby
class AsciicastsController < ApplicationController
|
|
PER_PAGE = 20
|
|
|
|
before_filter :load_resource, :only => [:show, :edit, :update, :destroy]
|
|
before_filter :ensure_authenticated!, :only => [:edit, :update, :destroy]
|
|
before_filter :ensure_owner!, :only => [:edit, :update, :destroy]
|
|
|
|
respond_to :html, :json
|
|
|
|
def index
|
|
@asciicasts = Asciicast.
|
|
order("created_at DESC").
|
|
page(params[:page]).
|
|
per(PER_PAGE)
|
|
end
|
|
|
|
def show
|
|
respond_with @asciicast
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def update
|
|
@asciicast.update_attributes(params[:asciicast])
|
|
redirect_to asciicast_path(@asciicast),
|
|
:notice => 'Your asciicast was updated.'
|
|
end
|
|
|
|
def destroy
|
|
if @asciicast.destroy
|
|
redirect_to profile_path(current_user),
|
|
:notice => 'Your asciicast was deleted.'
|
|
else
|
|
redirect_to asciicast_path(@asciicast),
|
|
:alert => "Oops, we couldn't remove this asciicast. Sorry."
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def load_resource
|
|
@asciicast = Asciicast.find(params[:id])
|
|
end
|
|
|
|
def ensure_owner!
|
|
if @asciicast.user != current_user
|
|
redirect_to asciicast_path(@asciicast), :alert => "You can't do that."
|
|
end
|
|
end
|
|
end
|