Sha256: 616e2efcf236586c4338fa9bb35f6791e5eb422ee1bdf4e2b888a3fd67b8b392
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 KB
Contents
class PicturesController < ApplicationController caches_page :index, :show cache_sweeper :picture_sweeper # View the index of picture, there are All pictures with pagination def index if params[:gallery_id] redirect_to gallery_url(Gallery.find_by_permalink(params[:gallery_id])) else @pictures = Picture.paginate :page => params[:page], :per_page => this_webapp.pictures_pagination end respond_to do |format| format.html end end # View only one picture def show @picture = Picture.find_by_permalink params[:id] prepare_picture @comment = @picture.comments.new rescue ActiveRecord::RecordNotFound render :file => "#{RAILS_ROOT}/public/404.html", :status => 404 end def create_comment unless request.post? flash[:notice] = 'no comment save because GET request' redirect_to picture_url(Picture.find(params[:comment][:picture_id])) return end @comment = Comment.create(params[:comment]) @comment.ip = request.remote_ip if @comment.save flash[:notice] = 'Your comment is save' redirect_to picture_url(@comment.picture) else flash[:notice] = 'Your comment failed' @picture = Picture.find(params[:comment][:picture_id]) prepare_picture render :action => 'show' end end private def prepare_picture raise ActiveRecord::RecordNotFound if @picture.nil? @gallery = @picture.gallery @tags = @picture.tag_list @breadcrumb = @picture end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pictrails-0.5.0 | app/controllers/pictures_controller.rb |