OSDN Git Service

fix: fetch fail
[pettanr/pettanr.git] / app / controllers / authors_controller.rb
index 5b5da90..320d74e 100644 (file)
 class AuthorsController < ApplicationController
-  layout 'test' if MagicNumber['test_layout']
-  if MagicNumber['run_mode'] == 0
-    before_filter :authenticate_user, :only => [:new, :create, :edit, :update]
-    before_filter :authenticate_author, :only => [:edit, :update]
+  if Manifest.manifest.magic_numbers['run_mode'] == 0
+    before_action :authenticate_user, :only => [:new, :create, :edit, :update]
+    before_action :authenticate_author, :only => [:edit, :update]
   else
-    before_filter :authenticate_reader, :only => [:index, :show, :comics, :stories, :panels]
-    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
-  before_filter :authenticate_admin!, :only => [:list, :browse]
 
   def index
-    @page = Author.page params[:page]
-    @page_size = Author.page_size params[:page_size]
-    @authors = Author.list(@page, @page_size)
-
-    respond_to do |format|
-      format.html # index.html.erb
-      format.json { render :json => @authors.to_json(Author.list_json_opt) }
-    end
-  end
-
-  def show
-    @au = Author.show(params[:id], [@user, @admin])
-
-    respond_to do |format|
-      format.html
-      format.json { render :json => @au.to_json(Author.show_json_opt) }
-    end
-  end
-
-  def comics
-    @au = Author.show(params[:id], [@user, @admin])
-
-    @page = Author.page params[:page]
-    @page_size = Author.comic_page_size params[:page_size]
-    @comics = Comic.mylist(@au, @page, @page_size)
-
-    respond_to do |format|
-      format.html # index.html.erb
-      format.json { render json: @comics.to_json(Comic.list_json_opt) }
-    end
+    filer_list
   end
   
-  def stories
-    @au = Author.show(params[:id], [@user, @admin])
-
-    @page = Author.page params[:page]
-    @page_size = Author.comic_page_size params[:page_size]
-    @stories = Story.mylist(@au, @page, @page_size)
-
-    respond_to do |format|
-      format.html # index.html.erb
-      format.json { render json: @stories.to_json(Story.list_json_opt) }
-    end
+  def show_html_format format
+    format.html {
+    }
   end
   
-  def panels
-    @au = Author.show(params[:id], [@user, @admin])
-
-    @page = Author.page params[:page]
-    @page_size = Author.panel_page_size params[:page_size]
-    @panels = Panel.mylist(@au, @page, @page_size)
-
-    respond_to do |format|
-      format.html # index.html.erb
-      format.json { render text: Panel.list_as_json_text(@panels) }
-    end
-  end
-  
-  def count
-    @au = {:count => Author.visible_count}
-    respond_to do |format|
-      format.json { render json: @au.to_json }
-    end
-  end
-  
-  def list
-    @authors = Author.all
-
-    respond_to do |format|
-      format.html { render layout: 'system' }
-    end
-  end
-
-  def browse
-    @au = Author.find(params[:id])
-
+  def show
+    set_show
     respond_to do |format|
-      format.html { render layout: 'system' }
+      show_html_format format
+      show_prof_format format
+      show_json_format format
     end
   end
   
   def new
-    @au = Author.new
-    @au.supply_default 
-
-    respond_to do |format|
-      format.html # new.html.erb
-      format.js
-      format.json { render json: @au.to_json(Author.show_json_opt) }
-    end
+    form_new
   end
-
+  
   def edit
-    @au = Author.edit(params[:id], @author)
+    form_edit
   end
-
+  
   def create
-    @au = Author.new()
-    @au.supply_default 
-    @au.attributes = params[:author]
-    @au.overwrite @user.id
-    respond_to do |format|
-      if @au.save
-        flash[:notice] = I18n.t('flash.notice.created', :model => Author.model_name.human)
-        format.html { redirect_to root_path }
-        format.json { render json: @au.to_json(Author.show_json_opt), status: :created, location: @artist }
-      else
-        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
-    @au = Author.edit(params[:id], @author)
-    @au.attributes = params[:author]
-    @au.overwrite @user.id
-
-    respond_to do |format|
-      if @au.save
-        flash[:notice] = I18n.t('flash.notice.updated', :model => Author.model_name.human)
-        format.html { redirect_to '/home/configure' }
-        format.json { head :ok }
-      else
-        format.html { render action: "edit" }
-        format.json { render json: @au.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