OSDN Git Service

top page moved
[pettanr/pettanr.git] / app / controllers / comics_controller.rb
index 3513be4..b01247d 100644 (file)
@@ -1,77 +1,42 @@
 class ComicsController < ApplicationController
-  before_filter :authenticate_author!, :only => [:top, :index, :show, :play, :create, :update, :destroy]
-  before_filter :authenticate_admin!, :only => [:list, :browse]
-
-  private
-  
-  def treat_param comic
-    comic.author_id = current_author.id
+  layout 'test' if MagicNumber['test_layout']
+  if MagicNumber['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 => [:top, :index, :show]
+    before_filter :authenticate_user, :only => [:new, :create, :edit, :update, :destroy]
+    before_filter :authenticate_author, :only => [:new, :create, :edit, :update, :destroy]
   end
-  
-  public
-  
-  def top
-    @new_comics = Comic.find(:all, 
-      :include => :author, :conditions => ['visible = 1'], :order => 'updated_at desc', :limit => 5
-    )
-    @new_pictures = OriginalPicture.find(:all, 
-      :include => [:artist, :lisence, :resource_picture], :order => 'updated_at', :limit => 5
-    )
+  before_filter :authenticate_admin!, :only => [:list, :browse]
 
-    respond_to do |format|
-      format.html # index.html.erb
-    end
-  end
-  
-  # GET /comics
-  # GET /comics.json
   def index
-    @comics = Comic.find(:all, 
-      :include => :author, :conditions => ['visible = 1'], :order => 'updated_at desc', :limit => 20
-    )
-
+    @page = Comic.page params[:page]
+    @page_size = Comic.page_size params[:page_size]
+    @comics = Comic.list(@page, @page_size)
     respond_to do |format|
       format.html # index.html.erb
-      format.json { render json: @comics }
+      format.json { render json: @comics.to_json(Comic.list_json_opt) }
+      format.atom 
+      format.rss
     end
   end
 
-  # GET /comics/1
-  # GET /comics/1.json
   def show
-    @comic = Comic.find(params[:id])
+    @comic = Comic.show(params[:id], [@user, @admin])
 
     respond_to do |format|
-#      format.html # show.html.erb
-      format.json { render json: @comic }
+      format.html # show.html.erb
+      format.json { render json: @comic.to_json(Comic.show_json_opt) }
+      format.atom 
+      format.rss 
     end
   end
 
-  def play
-    @comic = Comic.find(params[:id], include: [:author, {:panels => [:panel_pictures => :resource_picture, :balloons => :speaches]}], order: 'panels.t')
-
+  def count
+    @comic = {:count => Comic.visible_count}
     respond_to do |format|
-      format.html # index.html.erb
-      format.json {
-        render :json => @comic.to_json(
-          :include => [:author, {
-            :panels => {:include => {
-              :panel_pictures => {:include => :resource_picture}, 
-              :balloons => {:include => :speaches}
-            }}
-          }]
-        )
-      }
-      format.jsonp {
-        render :json => "callback(" + @comic.to_json(
-          :include => {
-            :panels => {:include => {
-              :panel_pictures => {:include => :resource_picture}, 
-              :balloons => {:include => :speaches}
-            }}
-          }
-        ) + ");"
-      }
+      format.json { render json: @comic.to_json }
     end
   end
   
@@ -93,32 +58,35 @@ class ComicsController < ApplicationController
     end
   end
   
-  # GET /comics/new
-  # GET /comics/new.json
   def new
     @comic = Comic.new
-
+    @comic.supply_default
     respond_to do |format|
       format.html # new.html.erb
-      format.json { render json: @comic }
+      format.js
+      format.json { render json: @comic.to_json(Comic.show_json_opt) }
     end
   end
 
-  # GET /comics/1/edit
   def edit
-    @comic = Comic.find(params[:id])
+    @comic = Comic.edit(params[:id], @author)
+    respond_to do |format|
+      format.html 
+      format.js
+    end
   end
 
-  # POST /comics
-  # POST /comics.json
   def create
-    @comic = Comic.new(params[:comic])
-    treat_param @comic
+    @comic = Comic.new
+    @comic.supply_default 
+    @comic.attributes = params[:comic]
+    @comic.overwrite @author
 
     respond_to do |format|
       if @comic.save
-        format.html { redirect_to @comic, notice: 'Comic was successfully created.' }
-        format.json { render json: @comic, status: :created, location: @comic }
+        flash[:notice] = I18n.t('flash.notice.created', :model => Comic.model_name.human)
+        format.html { redirect_to @comic }
+        format.json { render json: @comic.to_json(Comic.show_json_opt), status: :created, location: @comic }
       else
         format.html { render action: "new" }
         format.json { render json: @comic.errors, status: :unprocessable_entity }
@@ -126,39 +94,34 @@ class ComicsController < ApplicationController
     end
   end
 
-  # PUT /comics/1
-  # PUT /comics/1.json
   def update
-    @comic = Comic.find(params[:id])
-    if @comic.own? current_author
-      respond_to do |format|
-        if @comic.update_attributes(params[:comic])
-          format.html { redirect_to @comic, notice: 'Comic was successfully updated.' }
-          format.json { head :ok }
-        else
-          format.html { render action: "edit" }
-          format.json { render json: @comic.errors, status: :unprocessable_entity }
-        end
+    @comic = Comic.edit(params[:id], @author)
+    @comic.attributes = params[:comic]
+    @comic.overwrite @author
+    respond_to do |format|
+      if @comic.save
+        flash[:notice] = I18n.t('flash.notice.updated', :model => Comic.model_name.human)
+        format.html { redirect_to @comic }
+        format.json { head :ok }
+      else
+        format.html { render action: "edit" }
+        format.json { render json: @comic.errors, status: :unprocessable_entity }
       end
-    else
-      format.html { render action: "edit" }
-      format.json { render json: @comic.errors, status: :unprocessable_entity }
     end
   end
 
-  # DELETE /comics/1
-  # DELETE /comics/1.json
   def destroy
-    @comic = Comic.find(params[:id])
-    if @comic.own? current_author
-      @comic.destroy
-      respond_to do |format|
-        format.html { redirect_to comics_url }
+    @comic = Comic.edit(params[:id], @author)
+    respond_to do |format|
+      if @comic.destroy_with_story
+        flash[:notice] = I18n.t('flash.notice.destroyed', :model => Comic.model_name.human)
+        format.html { redirect_to '/home/comic' }
         format.json { head :ok }
+      else
+        flash[:notice] = I18n.t('flash.notice.not_destroyed', :model => Comic.model_name.human)
+        format.html { redirect_to @comic }
+        format.json { render json: @comic.errors, status: :unprocessable_entity }
       end
-    else
-      format.html { render action: "edit" }
-      format.json { render json: @comic.errors, status: :unprocessable_entity }
     end
   end
 end