OSDN Git Service

temp
[pettanr/pettanr.git] / app / controllers / panels_controller.rb
index a7ad65f..e3c14a9 100644 (file)
@@ -1,34 +1,42 @@
 class PanelsController < ApplicationController
-  layout 'test' if Pettanr::TestLayout
-  before_filter :authenticate_user!, :only => [:index, :show, :new, :edit, :create, :update, :destroy]
+  layout 'test' if MagicNumber['test_layout']
+  if MagicNumber['run_mode'] == 0
+    before_filter :authenticate_user, :only => [:new, :edit, :create, :update, :destroy, :catch]
+    before_filter :authenticate_author, :only => [:new, :edit, :create, :update, :destroy, :catch]
+  else
+    before_filter :authenticate_reader, :only => [:index, :show]
+    before_filter :authenticate_user, :only => [:new, :edit, :create, :update, :destroy, :catch]
+    before_filter :authenticate_author, :only => [:new, :edit, :create, :update, :destroy, :catch]
+  end
   before_filter :authenticate_admin!, :only => [:list, :browse]
-
-  public
   
-  # GET /panels
-  # GET /panels.json
+  @@model = Panel
   def index
-    @page = Panel.page params[:page]
-    @page_size = Panel.page_size params[:page_size]
-    @panels = Panel.list(@page, @page_size)
+    set_filer
 
     respond_to do |format|
-      format.html # index.html.erb
-      format.json { render text: Panel.list_as_json_text(@panels) }
+      format_filer format
+      format.json { render text: @@model.list_as_json_text(@items) }
+      format.atom 
+      format.rss { render :layout => false }
     end
   end
 
-  # GET /panels/1
-  # GET /panels/1.json
   def show
-    @panel = Panel.show(params[:id], @author)
+    @item = Panel.show(params[:id], @operators)
 
     respond_to do |format|
-      format.html # show.html.erb
-      format.json { render json: @panel.panel_elements_as_json }
-      format.jsonp {
-        render :json => "callback(" + @panel.panel_elements_as_json + ");"
+      format.html {
+        @panel = @item
+        if @operators.author
+          @new_scrolls = Scroll.mylist(@operators.author, 1, 5)
+          @fresh_scrolls = ScrollPanel.mylist(@operators.author, 1, 5).map {|sp| sp.scroll}
+          @new_sheets = Sheet.mylist(@operators.author, 1, 5)
+          @fresh_sheets = SheetPanel.mylist(@operators.author, 1, 5).map {|sp| sp.sheet}
+        end
       }
+      format_prof format
+      format.json { render json: @item.panel_elements_as_json }
     end
   end
 
@@ -61,7 +69,7 @@ class PanelsController < ApplicationController
     @panel.supply_default
 
     respond_to do |format|
-      format.html # new.html.erb
+      format.html
       format.js
       format.json { render json: @panel.panel_elements_as_json }
     end
@@ -75,8 +83,6 @@ class PanelsController < ApplicationController
     end
   end
 
-  # POST /panels
-  # POST /panels.json
   def create
     @panel = Panel.new
     @panel.supply_default
@@ -87,7 +93,8 @@ class PanelsController < ApplicationController
     @prm = params[:panel] || jsn
     respond_to do |format|
       if @panel.store @prm, @author
-        format.html { redirect_to @panel, notice: 'Panel was successfully created.' }
+        flash[:notice] = I18n.t('flash.notice.created', :model => Panel.model_name.human)
+        format.html { redirect_to @panel }
         format.json { render json: @panel.panel_elements_as_json, status: :created, location: @panel }
       else
         format.html { render action: "new" }
@@ -96,8 +103,6 @@ class PanelsController < ApplicationController
     end
   end
 
-  # PUT /panels/1
-  # PUT /panels/1.json
   def update
     @panel = Panel.edit(params[:id], @author)
     jsn = nil
@@ -107,7 +112,8 @@ class PanelsController < ApplicationController
     @prm = params[:panel] || jsn
     respond_to do |format|
       if @panel.store @prm, @author
-        format.html { redirect_to @panel, notice: 'Panel was successfully updated.' }
+        flash[:notice] = I18n.t('flash.notice.updated', :model => Panel.model_name.human)
+        format.html { redirect_to @panel }
         format.json { head :ok }
       else
         format.html { render action: "edit" }
@@ -116,17 +122,33 @@ class PanelsController < ApplicationController
     end
   end
 
-  # DELETE /panels/1
-  # DELETE /panels/1.json
   def destroy
     @panel = Panel.edit(params[:id], @author)
     respond_to do |format|
       Panel.transaction do
-        @panel.destroy
-        format.html { redirect_to panels_url }
-        format.json { head :ok }
+        if @panel.destroy_with_elements
+          flash[:notice] = I18n.t('flash.notice.destroyed', :model => Panel.model_name.human)
+          format.html { redirect_to '/home/panels' }
+          format.json { head :ok }
+        else
+          flash[:notice] = I18n.t('flash.notice.not_destroyed', :model => Panel.model_name.human)
+          format.html { redirect_to @panel }
+          format.json { render json: @panel.errors, status: :unprocessable_entity }
+        end
       end
     end
   end
   
+  def catch
+    @panel = Panel.edit(params[:id], @author)
+
+    respond_to do |format|
+      @author.working_panel_id = @panel.id
+      if @author.save
+        format.html { redirect_to @panel }
+      else
+      end
+    end
+  end
+
 end