OSDN Git Service

fix: fetch fail
[pettanr/pettanr.git] / app / controllers / authors_controller.rb
index 5fd246e..320d74e 100644 (file)
@@ -1,37 +1,31 @@
 class AuthorsController < ApplicationController
   if Manifest.manifest.magic_numbers['run_mode'] == 0
-    before_filter :authenticate_user, :only => [:new, :create, :edit, :update]
-    before_filter :authenticate_author, :only => [:edit, :update]
+    before_action :authenticate_user, :only => [:new, :create, :edit, :update]
+    before_action :authenticate_author, :only => [:edit, :update]
   else
-    before_filter :authenticate_reader, :only => [:index, :show, :count]
-    before_filter :authenticate_user, :only => [:new, :create, :edit, :update]
-    before_filter :authenticate_author, :only => [:edit, :update]
+    before_action :authenticate_reader, :only => [:index, :show]
+    before_action :authenticate_user, :only => [:new, :create, :edit, :update]
+    before_action :authenticate_author, :only => [:edit, :update]
   end
 
-  def self.model
-    Author
-  end
-  
   def index
     filer_list
   end
   
+  def show_html_format format
+    format.html {
+    }
+  end
+  
   def show
-    @item = Author.show(params[:id], @operators)
-
+    set_show
     respond_to do |format|
-      format.html {
-        @author = @item
-      }
-      format_prof format
-      format.json { render :json => @item.to_json(Author.show_json_opt) }
+      show_html_format format
+      show_prof_format format
+      show_json_format format
     end
   end
   
-  def count
-    list_count
-  end
-  
   def new
     form_new
   end
@@ -41,38 +35,25 @@ class AuthorsController < ApplicationController
   end
   
   def create
-    @author = Author.new()
-    @author.supply_default 
-    @author.attributes = params[:author]
-    @author.overwrite @operators
-    respond_to do |format|
-      if @author.save
-        flash[:notice] = I18n.t('flash.notice.created', :model => Author.model_name.human)
-        format.html { redirect_to root_path }
-        format.json { render json: @author.to_json(Author.show_json_opt), status: :created }
-      else
-        flash[:notice] = I18n.t('flash.notice.not_created', :model => Author.model_name.human)
-        format.html { render action: "new" }
-        format.json { render json: @au.errors, status: :unprocessable_entity }
-      end
-    end
+    set_model
+    @item = @my_model_class.new
+    @item.supply_default 
+    @item.attributes = @item.permit_params params
+    @item.overwrite @operators
+    render_create root_path
   end
-
+  
   def update
-    @author = Author.edit(params[:id], @operators)
-    @author.attributes = params[:author]
-    @author.overwrite @operators
-
-    respond_to do |format|
-      if @author.save
-        flash[:notice] = I18n.t('flash.notice.updated', :model => Author.model_name.human)
-        format.html { redirect_to '/home/configure' }
-        format.json { head :ok }
-      else
-        flash[:notice] = I18n.t('flash.notice.not_updated', :model => Author.model_name.human)
-        format.html { render action: "edit" }
-        format.json { render json: @author.errors, status: :unprocessable_entity }
-      end
-    end
+    set_edit
+    @item.attributes = @item.permit_params params
+    @item.overwrite @operators
+    render_update '/home/configure'
+  end
+  
+  def destroy
+    set_model
+    @item = @my_model_class.edit(params[:id], @operators)
+    render_destroy '/home/configure'
   end
+  
 end