OSDN Git Service

rename model name
[pettanr/pettanr.git] / app / controllers / scroll_panels_controller.rb
index dfdb3a8..21d4d14 100644 (file)
 class ScrollPanelsController < ApplicationController
-  layout 'test' if MagicNumber['test_layout']
-  if MagicNumber['run_mode'] == 0
+  if Manifest.manifest.magic_numbers['run_mode'] == 0
     before_filter :authenticate_user, :only => [:new, :create, :edit, :update, :destroy]
     before_filter :authenticate_author, :only => [:new, :create, :edit, :update, :destroy]
   else
-    before_filter :authenticate_reader, :only => [:index, :show, :scroll]
+    before_filter :authenticate_reader, :only => [
+      :index, :show, :by_panel, :by_scroll, :by_author, :play, :count, :count_by_panel, :count_by_scroll, :count_by_author, :play
+    ]
     before_filter :authenticate_user, :only => [:new, :create, :edit, :update, :destroy]
     before_filter :authenticate_author, :only => [:new, :create, :edit, :update, :destroy]
   end
-  before_filter :authenticate_admin!, :only => [:list, :browse]
-
-  @@model = ScrollPanel
+  
   def index
-    set_filer
-
-    respond_to do |format|
-      format_filer format
-      format.json { render :json => @items.to_json(@@model.list_json_opt) }
-    end
+    filer_list
+  end
+  
+  def by_panel
+    filer_list
+  end
+  
+  def by_scroll
+    filer_list
+  end
+  
+  def by_author
+    filer_list
+  end
+  
+  def play
+    filer_list
   end
-
+  
   def show
-    @item = ScrollPanel.show(params[:id], @operators)
-
+    set_show
     respond_to do |format|
-      format.html {
-        @scroll_panel = @item
-      }
-      format_prof format
-      format.json { render json: @item.scroll_panel_as_json(@operators.author) }
+      show_prof_format format
+      format.json { render json: @item.to_json }
     end
   end
   
-  def list
-    @scroll_panels = ScrollPanel.all
-
-    respond_to do |format|
-      format.html { render layout: 'system' }# index.html.erb
-      format.json { render json: @scroll_panels }
-    end
+  def count
+    list_count
   end
-
-  def browse
-    @scroll_panel = ScrollPanel.find(params[:id])
-
-    respond_to do |format|
-      format.html { render layout: 'system' } # show.html.erb
-      format.json { render json: @scroll_panel }
-    end
+  
+  def count_by_panel
+    list_count
+  end
+  
+  def count_by_scroll
+    list_count
+  end
+  
+  def count_by_author
+    list_count
+  end
+  
+  def count_play
+    list_count
   end
   
   def new
-    @scroll_panel = ScrollPanel.new 
-    @scroll_panel.supply_default
-    respond_to do |format|
-      format.html # new.html.erb
-      format.js
-      format.json { render json: @scroll_panel.scroll_panel_as_json(@author) }
-    end
+    form_new
   end
-
+  
   def edit
-    @scroll_panel = ScrollPanel.edit(params[:id], @author)
-    respond_to do |format|
-      format.html 
-      format.js
-    end
+    form_edit
   end
-
+  
   def create
-    @scroll_panel = ScrollPanel.new 
-    @scroll_panel.supply_default
-    @scroll_panel.attributes = params[:scroll_panel]
-    @scroll_panel.overwrite @author
-    @scroll = Scroll.edit(@scroll_panel.scroll_id, @author) if @scroll_panel.scroll_id
-    @panel = Panel.show(@scroll_panel.panel_id, @author) if @scroll_panel.panel_id
+    @my_model_class = self.class.model
+    @item = @my_model_class.new
+    @item.supply_default
+    @item.attributes = params[@item.item_name]
+    @item.overwrite @operators
+    @binder = @my_model_class.binder_model.edit(@item.binder_id, @operators) if @item.binder_id
+    @panel = @my_model_class.destination_model.show(@item.destination_id, @operators) if @item.destination_id
     
-    respond_to do |format|
-      if @scroll_panel.store
-        flash[:notice] = I18n.t('flash.notice.created', :model => ScrollPanel.model_name.human)
-        format.html { redirect_to play_scroll_path(@scroll) }
-        format.json { render json: @scroll_panel.scroll_panel_as_json(@author) }
-      else
-        flash[:notice] = I18n.t('flash.notice.not_created', :model => ScrollPanel.model_name.human)
-        format.html { render action: "new" }
-        format.json { render json: @scroll_panel.errors, status: :unprocessable_entity }
-      end
-    end
+    leaf_render_create play_scroll_path(@binder)
   end
   
   def update
-    @scroll_panel = ScrollPanel.edit(params[:id], @author)
-    ot = @scroll_panel.t
-    @scroll_panel.attributes = params[:scroll_panel]
-    @scroll_panel.overwrite @author
-    @scroll = Scroll.edit(@scroll_panel.scroll_id, @author) if @scroll_panel.scroll_id
-    respond_to do |format|
-      if @scroll_panel.store ot
-        flash[:notice] = I18n.t('flash.notice.updated', :model => ScrollPanel.model_name.human)
-        format.html { redirect_to play_scroll_path(@scroll) }
-        format.json { head :ok }
-      else
-        flash[:notice] = I18n.t('flash.notice.not_updated', :model => ScrollPanel.model_name.human)
-        format.html { render action: "edit" }
-        format.json { render json: @scroll_panel.errors, status: :unprocessable_entity }
-      end
-    end
+    @my_model_class = self.class.model
+    @item = @my_model_class.edit(params[:id], @operators)
+    ot = @item.t
+    @item.attributes = params[@item.item_name]
+    @item.overwrite @operators
+    @binder = @my_model_class.binder_model.edit(@item.binder_id, @operators) if @item.binder_id
+    # no check permission for destination
+    # swapable hidden panel
+    #@panel = @my_model_class.destination_model.show(@item.destination_id, @operators) if @item.destination_id
+    
+    leaf_render_update ot, play_scroll_path(@binder)
   end
-
+  
   def destroy
-    @scroll_panel = ScrollPanel.edit(params[:id], @author)
-    @scroll = Scroll.edit(@scroll_panel.scroll_id, @author) if @scroll_panel.scroll_id
+    @scroll_panel = ScrollPanel.edit(params[:id], @operators)
+    @scroll = Scroll.edit(@scroll_panel.scroll_id, @operators) if @scroll_panel.scroll_id
     respond_to do |format|
       if @scroll_panel.destroy_and_shorten
         flash[:notice] = I18n.t('flash.notice.destroyed', :model => ScrollPanel.model_name.human)