X-Git-Url: http://git.osdn.net/view?p=pettanr%2Fpettanr.git;a=blobdiff_plain;f=app%2Fcontrollers%2Foriginal_pictures_controller.rb;h=c902cf9e509882e4c90e4102b1c8671418a8b769;hp=b5522177b0316522be0601246c088659ac2dc405;hb=6733d61c6f0551647a023be3006cb70901497c36;hpb=f8cd0347c685363a6ab296ca5bcf42c158e5e25f diff --git a/app/controllers/original_pictures_controller.rb b/app/controllers/original_pictures_controller.rb index b5522177..c902cf9e 100644 --- a/app/controllers/original_pictures_controller.rb +++ b/app/controllers/original_pictures_controller.rb @@ -1,164 +1,121 @@ +#原画 class OriginalPicturesController < ApplicationController - layout 'test' if Pettanr::TestLayout - before_filter :authenticate_user!, :only => [:index, :show, :new, :edit, :create, :update, :destroy] - before_filter :authenticate_admin!, :only => [:list, :browse] - before_filter :authenticate_artist, :only => [:index, :show, :new, :edit, :create, :update, :destroy] + before_filter :authenticate_reader, :only => [:show, :history] + before_filter :authenticate_user, :only => [:index, :new, :edit, :create, :update, :destroy] + before_filter :authenticate_artist, :only => [:index, :new, :edit, :create, :update, :destroy] - private - - def set_image(file) - if file.respond_to?(:read) - file.read - else - Base64.decode64(file.to_s.gsub(' ', '+')) #rubyのバグ?+でデコードされるべきキャラがスペースになる - end - end - - def authenticate_artist - if @author.artist? - true - else - respond_to do |format| - format.html { redirect_to new_artist_path, :status => :found } - format.js { render "artists/new" } - format.json { - raise ActiveRecord::Forbidden - } - end - false - end - end - - public - - # GET /original_pictures - # GET /original_pictures.json def index - @page = OriginalPicture.page params[:page] - @page_size = OriginalPicture.page_size params[:page_size] - @original_pictures = OriginalPicture.list(@artist.id, {}, @page, @page_size) - - respond_to do |format| - format.html # index.html.erb - format.json { render json: @original_pictures.to_json(OriginalPicture.list_json_opt) } - end + filer_list end - # GET /original_pictures/1 - # GET /original_pictures/1.json - def show - @original_picture = OriginalPicture.show(params[:id], @artist) - - respond_to do |format| - opt = {:type => @original_picture.mime_type, :disposition=>"inline"} - format.png { send_data(@original_picture.restore, opt ) } - format.gif { send_data(@original_picture.restore, opt ) } - format.jpeg { send_data(@original_picture.restore, opt ) } - format.html { - #ライセンス付与のために原画ライセンスグループ作成準備 - @original_picture_license_group = OriginalPictureLicenseGroup.new :original_picture_id => @original_picture.id - render - } - format.json { render json: @original_picture.to_json(OriginalPicture.show_json_include_opt)} - end + def show_html_format format + format.html { + #ライセンス付与のために原画ライセンスグループ作成準備 + @original_picture_license_group = OriginalPictureLicenseGroup.new :original_picture_id => @item.id + render + } end - - def list - @original_pictures = OriginalPicture.all - - respond_to do |format| - format.html { render layout: 'system' } - format.json { render json: @original_pictures } - end + + def show_json_format format + format.json { render json: @item.to_json( + {:include => {:resource_picture => {}} } + )} end - - def browse - @original_picture = OriginalPicture.find(params[:id]) - + + def show + set_show respond_to do |format| - format.html { render layout: 'system' } - format.json { render json: @original_picture } + 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 refresh - @original_picture = OriginalPicture.find(params[:id]) - img = Magick::Image.from_blob(@original_picture.restore).shift - @original_picture.store img + def history + set_show + @history = @item.history + respond_to do |format| - format.html { redirect_to original_pictures_url } + format.html + format.json { render json: @history.to_json } end end - # GET /original_pictures/new - # GET /original_pictures/new.json def new - @original_picture = OriginalPicture.new - @original_picture.supply_default @artist - + set_new respond_to do |format| - format.html # new.html.erb - format.js - format.json { render json: @original_picture } + format.html + format.json { render json: @item.to_json } end end - - # GET /original_pictures/1/edit + def edit - @original_picture = OriginalPicture.show(params[:id], @author) + set_edit respond_to do |format| format.html - format.js + format.json { render json: @item.to_json } end end - - # POST /original_pictures - # POST /original_pictures.json + def create - @picture_data = set_image params[:original_picture][:file] - @original_picture = OriginalPicture.new - @original_picture.supply_default @artist - + set_model + p params[:file] + @imager = if params[:original_picture] + PettanImager.load set_image params[:original_picture][:file] + else + nil + end + @item = OriginalPicture.new + @item.supply_default + @item.overwrite @operators + respond_to do |format| - if @original_picture.store(@picture_data, @artist) - format.html { redirect_to @original_picture, notice: 'Original picture was successfully created.' } - format.json { render json: @original_picture, status: :created, location: @original_picture } + if @item.store(@imager) + created_html_format format + created_json_format format else - format.html { render action: "new" } - format.json { render json: @original_picture.errors, status: :unprocessable_entity } + not_created_html_format format + not_created_json_format format end end end - - # PUT /original_pictures/1 - # PUT /original_pictures/1.json + def update - @picture_data = set_image params[:original_picture][:file] - @original_picture = OriginalPicture.show(params[:id], @author) - @original_picture.supply_default @artist - + set_model + @imager = if params[:original_picture] + PettanImager.load set_image params[:original_picture][:file] + else + nil + end + @item = OriginalPicture.edit(params[:id], @operators) + @item.overwrite @operators + respond_to do |format| - if @original_picture.store(@picture_data, @artist) - format.html { redirect_to @original_picture, notice: 'Original picture was successfully created.' } - format.json { render json: @original_picture, status: :created, location: @original_picture } + if @item.store(@imager) + updated_html_format format + updated_json_format format else - format.html { render action: "edit" } - format.json { render json: @original_picture.errors, status: :unprocessable_entity } + not_updated_html_format format + not_updated_json_format format end end end - - # DELETE /original_pictures/1 - # DELETE /original_pictures/1.json + def destroy - @original_picture = OriginalPicture.find(params[:id], @author) - OriginalPicture.transaction do - @original_picture.destroy - end + @item = OriginalPicture.edit(params[:id], @operators) respond_to do |format| - format.html { redirect_to original_pictures_url } - format.json { head :ok } + if @item.destroy_with_resource_picture + format.html { redirect_to original_pictures_url } + format.json { head :ok } + else + format.html { redirect_to original_picture_path(@item) } + format.json { render json: @item.errors, status: :unprocessable_entity } + end end end end