X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=app%2Fcontrollers%2Fresource_pictures_controller.rb;h=118e49c35b1caa625d97436df6410d858114f4dc;hb=0bdfae60dc58932c99849c31d36ee5d7715db782;hp=102b936e732e754e42ece5d9436b577243c20404;hpb=d85b46502d897da30c19df5b2978bcf05c82ef52;p=pettanr%2Fpettanr.git diff --git a/app/controllers/resource_pictures_controller.rb b/app/controllers/resource_pictures_controller.rb index 102b936e..118e49c3 100644 --- a/app/controllers/resource_pictures_controller.rb +++ b/app/controllers/resource_pictures_controller.rb @@ -1,103 +1,102 @@ class ResourcePicturesController < ApplicationController - layout 'test' if MagicNumber['test_layout'] - before_filter :authenticate_user!, :only => [:index, :show, :credit, :new, :create, :update, :destroy] - before_filter :authenticate_admin!, :only => [:list, :browse] - before_filter :authenticate_artist, :only => [:new, :create, :destroy] - - # GET /resource_pictures - # GET /resource_pictures.json + if Manifest.manifest.magic_numbers['run_mode'] == 0 + before_action :authenticate_user, :only => [:new, :create, :update, :destroy] + before_action :authenticate_artist, :only => [:new, :create, :update, :destroy] + else + before_action :authenticate_resource_reader, :only => [ + :index, :show, :credit, + :by_original_picture, :by_license_group, :by_license, :by_artist, :search + ] + before_action :authenticate_user, :only => [:new, :create, :update, :destroy] + before_action :authenticate_artist, :only => [:new, :create, :update, :destroy] + end + def index - @page = ResourcePicture.page params[:page] - @page_size = ResourcePicture.page_size params[:page_size] - @resource_pictures = ResourcePicture.list(@page, @page_size) - - respond_to do |format| - format.html # index.html.erb - format.json { render :json => @resource_pictures.to_json(ResourcePicture.list_json_opt) } - end + filer_list + end + + def by_original_picture + filer_list param: params[:id] + end + + def by_license_group + filer_list param: params[:id] end - - # GET /resource_pictures/1 - # GET /resource_pictures/1.json + + def by_license + filer_list param: params[:id] + end + + def by_artist + filer_list param: params[:id] + end + + def show_html_format format + format.html { + @item.boosts 'post' + } + end + def show - @resource_picture = ResourcePicture.show(params[:id], @author) - + set_show respond_to do |format| - opt = {:type => @resource_picture.mime_type, :disposition=>"inline"} - format.png { send_data(@resource_picture.restore(params[:subdir]), opt ) } - format.gif { send_data(@resource_picture.restore(params[:subdir]), opt ) } - format.jpeg { send_data(@resource_picture.restore(params[:subdir]), opt ) } - format.html # show.html.erb - format.json { render :json => @resource_picture.to_json(ResourcePicture.show_json_opt)} + 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_prof_format format + show_json_format format end end def credit - @resource_picture = ResourcePicture.show(params[:id], @author) - + @resource_picture = ResourcePicture.show(params[:id], @operators) + respond_to do |format| format.html { render :layout => false } # show.html.erb - format.json { render :json => @resource_picture.to_json(ResourcePicture.show_json_opt)} end end def new - @original_picture = OriginalPicture.edit params[:original_picture_id], @artist - @imager = PettanImager.load @original_picture.restore - @original_picture_license_group = OriginalPictureLicenseGroup.new params[:original_picture_license_group] - @license_group = LicenseGroup.show @original_picture_license_group.license_group_id - @resource_picture = @original_picture.resource_picture - unless @resource_picture - @resource_picture = ResourcePicture.new - @resource_picture.supply_default - end - @resource_picture.attributes = params[:resource_picture] - @resource_picture.overwrite @original_picture - @license = @resource_picture.license - + # use @item, @original_picture respond_to do |format| - format.html # new.html.erb - format.js + format.html end end def create - @original_picture = OriginalPicture.edit params[:original_picture_id], @artist + @original_picture = OriginalPicture.edit params[:original_picture_id], @operators @imager = PettanImager.load @original_picture.restore - @original_picture_license_group = OriginalPictureLicenseGroup.new params[:original_picture_license_group] - @license_group = LicenseGroup.show @original_picture_license_group.license_group_id - @resource_picture = @original_picture.resource_picture - unless @resource_picture - @resource_picture = ResourcePicture.new - @resource_picture.supply_default + jsn = nil + if params[:json] + jsn = JSON.parse_no_except(params[:json]) end - @resource_picture.attributes = params[:resource_picture] - @resource_picture.overwrite @original_picture - @license = @resource_picture.license - + @item = @original_picture.resource_picture || ResourcePicture.new + @prm = if params[:resource_picture] == nil or params[:resource_picture].empty? + jsn + else + @item.permit_params(params) + end + @item.attributes = @prm + @item.overwrite @original_picture + @item.boosts 'post' + respond_to do |format| - if @resource_picture.store(@imager) - format.html { redirect_to @resource_picture } - format.json { render json: @resource_picture.to_json(ResourcePicture.show_json_opt), status: :created, location: @resource_picture } + if @item.store(@imager) + format.html { redirect_to @item } + format.json { render json: @item.to_json, status: :created, location: @item } else format.html { render action: "new" } - format.json { render json: @resource_picture.errors, status: :unprocessable_entity } + format.json { render json: @item.errors, status: :unprocessable_entity } end end end def destroy - @resource_picture = ResourcePicture.edit(params[:id], @artist) - - respond_to do |format| - if @resource_picture.unpublish - format.html { redirect_to resource_pictures_path } - format.json { head :ok } - else - format.html { render resource_picture_path(@resource_picture) } - format.json { render json: @resource_picture.errors, status: :unprocessable_entity } - end - end + set_model + @item = @my_model_class.edit(params[:id], @operators) + render_destroy_by 'unpublish', '/home/' + @item.path_name end def count @@ -107,22 +106,13 @@ class ResourcePicturesController < ApplicationController end end - def list - @resource_pictures = ResourcePicture.all - - respond_to do |format| - format.html { render layout: 'system' } - format.json { render json: @resource_pictures } - end - end - - def browse - @resource_picture = ResourcePicture.find(params[:id]) - + def search + @resource_pictures = ResourcePicture.find_by_md5(params[:md5]) + respond_to do |format| - format.html { render layout: 'system' } - format.json { render json: @resource_picture } + format.html + format.json { render json: @resource_pictures.to_json } end end - + end