80 lines
1.9 KiB
Ruby
80 lines
1.9 KiB
Ruby
class AsciicastsController < ApplicationController
|
|
PER_PAGE = 15
|
|
|
|
before_filter :load_resource, :only => [:show, :edit, :update, :destroy]
|
|
before_filter :count_view, :only => [:show]
|
|
before_filter :ensure_authenticated!, :only => [:edit, :update, :destroy]
|
|
before_filter :ensure_owner!, :only => [:edit, :update, :destroy]
|
|
|
|
respond_to :html, :json
|
|
|
|
def index
|
|
collection = Asciicast.
|
|
order("created_at DESC").
|
|
page(params[:page]).
|
|
per(PER_PAGE)
|
|
|
|
@category_name = "All Asciicasts"
|
|
@current_category = :all
|
|
@asciicasts = AsciicastDecorator.decorate(collection)
|
|
end
|
|
|
|
def popular
|
|
collection = Asciicast.
|
|
order("views_count DESC").
|
|
where("views_count > 0").
|
|
page(params[:page]).
|
|
per(PER_PAGE)
|
|
|
|
@category_name = "Popular Asciicasts"
|
|
@current_category = :popular
|
|
@asciicasts = AsciicastDecorator.decorate(collection)
|
|
|
|
render :index
|
|
end
|
|
|
|
def show
|
|
@asciicast = AsciicastDecorator.new(@asciicast)
|
|
@asciicast_author = UserDecorator.new(@asciicast.user)
|
|
@title = @asciicast.smart_title
|
|
respond_with @asciicast
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def update
|
|
@asciicast.update_attributes(params[:asciicast])
|
|
redirect_to asciicast_path(@asciicast),
|
|
:notice => 'Asciicast was updated.'
|
|
end
|
|
|
|
def destroy
|
|
if @asciicast.destroy
|
|
redirect_to profile_path(current_user),
|
|
:notice => 'Asciicast was deleted.'
|
|
else
|
|
redirect_to asciicast_path(@asciicast),
|
|
:alert => "Oops, we couldn't remove this asciicast. Try again later."
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def load_resource
|
|
@asciicast = Asciicast.find(params[:id])
|
|
end
|
|
|
|
def count_view
|
|
unless request.xhr?
|
|
Asciicast.increment_counter :views_count, @asciicast.id
|
|
end
|
|
end
|
|
|
|
def ensure_owner!
|
|
if @asciicast.user != current_user
|
|
redirect_to asciicast_path(@asciicast), :alert => "You can't do that."
|
|
end
|
|
end
|
|
end
|