OSDN Git Service

fix: fetch fail
[pettanr/pettanr.git] / app / controllers / original_pictures_controller.rb
index 0c5801b..8246a63 100644 (file)
@@ -1,26 +1,27 @@
 #原画
 class OriginalPicturesController < ApplicationController
-  before_filter :authenticate_reader, :only => [:show, :history, :count]
-  before_filter :authenticate_user, :only => [:index, :new, :edit, :create, :update, :destroy]
-  before_filter :authenticate_artist, :only => [:index, :new, :edit, :create, :update, :destroy]
-  
-  def self.model
-    OriginalPicture
-  end
+  before_action :authenticate_reader, :only => [:show, :history]
+  before_action :authenticate_user, :only => [:index, :new, :edit, :create, :update, :destroy]
+  before_action :authenticate_artist, :only => [:index, :new, :edit, :create, :update, :destroy]
   
   def index
-    filer_list
+    filer_list param: @operators
   end
 
   def show_html_format format
     format.html {
-      @original_picture = @item
       #ライセンス付与のために原画ライセンスグループ作成準備
       @original_picture_license_group  = OriginalPictureLicenseGroup.new :original_picture_id => @item.id
       render
     }
   end
   
+  def show_json_format format
+    format.json { render json: @item.to_json(
+      {:include => {:resource_picture => {}} }
+    )}
+  end
+  
   def show
     set_show
     respond_to do |format|
@@ -33,96 +34,80 @@ class OriginalPicturesController < ApplicationController
       show_json_format format
     end
   end
-
+  
   def history
-    @original_picture = OriginalPicture.show(params[:id], @operators)
-    @history = @original_picture.history
+    set_show
+    @finder = @my_action.finder(param: params[:id]).page(1).per(-1)
     
     respond_to do |format|
       format.html
-      format.json { render json: @history.to_json }
+      list_json_format @finder, format
     end
   end
   
-  def count
-    list_count
-  end
-  
   def new
-    @original_picture = OriginalPicture.new
-    @original_picture.supply_default
-
+    set_new
     respond_to do |format|
       format.html
-      format.js
-      format.json { render json: @original_picture.to_json(OriginalPicture.show_json_opt) }
+      format.json { render json: @item.to_json }
     end
   end
-
+  
   def edit
-    @original_picture = OriginalPicture.edit(params[:id], @operators)
+    set_edit
     respond_to do |format|
       format.html
-      format.js
+      format.json { render json: @item.to_json }
     end
   end
-
+  
   def create
+    set_model
     @imager = if params[:original_picture]
       PettanImager.load set_image params[:original_picture][:file]
     else
       nil
     end
-    @original_picture = OriginalPicture.new
-    @original_picture.supply_default
-    @original_picture.overwrite @operators
-
+    @item = OriginalPicture.new
+    @item.supply_default
+    @item.overwrite @operators
+    
     respond_to do |format|
-      if @original_picture.store(@imager)
-        flash[:notice] = I18n.t('flash.notice.created', :model => OriginalPicture.model_name.human)
-        format.html { redirect_to @original_picture }
-        format.json { render json: @original_picture.to_json(OriginalPicture.show_json_opt), status: :created, location: @original_picture }
+      if @item.store(@imager)
+        created_html_format format
+        created_json_format format
       else
-        flash[:notice] = I18n.t('flash.notice.not_created', :model => OriginalPicture.model_name.human)
-        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
-
+  
   def update
+    set_model
     @imager = if params[:original_picture]
       PettanImager.load set_image params[:original_picture][:file]
     else
       nil
     end
-    @original_picture = OriginalPicture.edit(params[:id], @operators)
-    @original_picture.overwrite @operators
-
+    @item = OriginalPicture.edit(params[:id], @operators)
+    @item.overwrite @operators
+    
     respond_to do |format|
-      if @original_picture.store(@imager)
-        flash[:notice] = I18n.t('flash.notice.updated', :model => OriginalPicture.model_name.human)
-        format.html { redirect_to @original_picture }
-        format.json { render json: @original_picture.to_json(OriginalPicture.show_json_opt), status: :created, location: @original_picture }
+      if @item.store(@imager)
+        updated_html_format format
+        updated_json_format format
       else
-        flash[:notice] = I18n.t('flash.notice.not_updated', :model => OriginalPicture.model_name.human)
-        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
-
+  
   def destroy
-    @original_picture = OriginalPicture.edit(params[:id], @operators)
-    
-    respond_to do |format|
-      if @original_picture.destroy_with_resource_picture
-        format.html { redirect_to original_pictures_url }
-        format.json { head :ok }
-      else
-        format.html { redirect_to original_picture_path(@original_picture) }
-        format.json { render json: @original_picture.errors, status: :unprocessable_entity }
-      end
-    end
+    set_model
+    @item = @my_model_class.edit(params[:id], @operators)
+    render_destroy_by 'destroy_with_resource_picture', original_pictures_url
   end
+  
 end