X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=app%2Fcontrollers%2Fpictures_controller.rb;h=497aba6e6ba83e54100af9adadbd5d6579d19a8a;hb=f52d305f8c8857da0a38049e85ebd37e3525c8c8;hp=4fe261a5aafdd3dc1ad52750bee2208a80cbdfd8;hpb=a0e7869980e9d497d325fddc7d4f5a3feea56738;p=pettanr%2Fpettanr.git diff --git a/app/controllers/pictures_controller.rb b/app/controllers/pictures_controller.rb index 4fe261a5..497aba6e 100644 --- a/app/controllers/pictures_controller.rb +++ b/app/controllers/pictures_controller.rb @@ -1,27 +1,66 @@ class PicturesController < ApplicationController - layout 'test' if Pettanr::TestLayout - before_filter :authenticate_user!, :only => [:show, :credit] + if Manifest.manifest.magic_numbers['run_mode'] == 0 + before_filter :authenticate_user, :only => [] + before_filter :authenticate_author, :only => [] + else + before_filter :authenticate_user, :only => [] + before_filter :authenticate_resource_reader, :only => [:show, :credit, :search] + before_filter :authenticate_author, :only => [] + end + before_filter :authenticate_admin, :only => [:index, :by_artist, :count, :count_by_artist] + + def index + filer_list + end + + def by_artist + filer_list + end + + def show_html_format format + format.html { + @item.boosts 'post' + @picture = @item + } + end def show - @picture = Picture.show(params[:id], @author) - + set_show respond_to do |format| - opt = {:type => @picture.mime_type, :disposition=>"inline"} - format.png { send_data(@picture.restore(params[:subdir]), opt ) } - format.gif { send_data(@picture.restore(params[:subdir]), opt ) } - format.jpeg { send_data(@picture.restore(params[:subdir]), opt ) } - format.html - format.json { render :json => @picture.to_json} + opt = {:type => @item.mime_type, :disposition=>"inline"} + format.png { send_data(@item.restore(params[:subdir]), opt ) } + format.gif { send_data(@item.restore(params[:subdir]), opt ) } + format.jpeg { send_data(@item.restore(params[:subdir]), opt ) } + show_html_format format + show_json_format format + show_prof_format format end end def credit - @picture = Picture.show(params[:id], @author) + @picture = Picture.show(params[:id], @operators) respond_to do |format| - format.html { render :layout => false } # show.html.erb + format.html { render :layout => false } format.json { render :json => @picture.to_json} end end + def search + @pictures = Picture.list_by_md5(params[:md5]) + + respond_to do |format| + format.html + format.json { render json: @pictures.to_json } + end + end + + def count + list_count + end + + def count_by_artist + list_count + end + end