OSDN Git Service

fix: fetch fail
[pettanr/pettanr.git] / app / controllers / comics_controller.rb
index 4a954e2..73851fc 100644 (file)
 class ComicsController < ApplicationController
-  if Const.run_mode == 0
-    before_filter :authenticate_user!, :only => [:new, :create, :edit, :update, :destroy]
+  if Manifest.manifest.magic_numbers['run_mode'] == 0
+    before_action :authenticate_user, :only => [:new, :create, :edit, :update, :destroy]
+    before_action :authenticate_author, :only => [:new, :create, :edit, :update, :destroy]
   else
-    before_filter :authenticate_user!, :only => [:top, :index, :show, :play, :new, :create, :edit, :update, :destroy]
+    before_action :authenticate_reader, :only => [
+      :index, :show, :play, :by_story, :by_author
+    ]
+    before_action :authenticate_user, :only => [:new, :create, :edit, :update, :destroy]
+    before_action :authenticate_author, :only => [:new, :create, :edit, :update, :destroy]
   end
-  before_filter :authenticate_admin!, :only => [:list, :browse]
-
-  private
   
-  def treat_param comic
-    comic.author_id = @author.id
+  def index
+    filer_list
   end
   
-  public
+  def by_story
+    filer_list param: params[:id]
+  end
   
-  def top
-    @new_comics = Comic.find(:all, 
-      :include => :author, :conditions => ['visible > 0'], :order => 'updated_at desc', :limit => 5
-    )
-    @new_pictures = OriginalPicture.find(:all, 
-      :include => [:artist, :license, :resource_picture], :order => 'updated_at', :limit => 5
-    )
-
-    respond_to do |format|
-      format.html # index.html.erb
-    end
+  def by_author
+    filer_list param: params[:id]
   end
   
-  # GET /comics
-  # GET /comics.json
-  def index
-    @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.to_json(Comic.list_json_opt) }
-    end
+  def show_html_format format
+    format.html {
+      @play_list = Locmare::ListGroup.list(
+        'comic_stories', 'by_comic', @operators, 
+        {:id => @item.id, :page_size => -1}  # set no limit options
+      )
+    }
   end
-
-  # GET /comics/1
-  # GET /comics/1.json
+  
   def show
-    @comic = Comic.show(params[:id], @author)
-
+    set_show
     respond_to do |format|
-      format.html # show.html.erb
-      format.json { render json: @comic.to_json(Comic.show_json_include_opt) }
-    end
-  end
-
-  def count
-    @comic = {:count => Comic.visible_count}
-    respond_to do |format|
-      format.json { render json: @comic.to_json }
+      show_html_format format
+      show_prof_format format
+      show_json_format format
+      format.atom 
+      format.rss 
     end
   end
   
   def play
-    c = Comic.show(params[:id], @author)
-    cnt = Panel.count(:conditions => ['comic_id = ?', c.id]).to_i
-    @offset = Comic.offset cnt, params[:offset]
-    @count = Comic.count cnt, params[:count]
-    @comic = Comic.play(params[:id])
+    set_play
+    @finder.per(-1)    # no limit no pager
+    play_list
     respond_to do |format|
-      format.html # index.html.erb
-      format.json {
-        render :json => @comic.to_json_play
-      }
-      format.jsonp {
-        render :json => "callback(" + @comic.to_json_play + ");"
+      format.html {
+        if @item.own? @operators
+          @new_story_items = assist_items('home', 'stories', finder: :find_private, param: @operators)
+        end
       }
+      list_json_format @finder, format
     end
   end
   
-  def list
-    @comics = Comic.all
-
-    respond_to do |format|
-      format.html { render layout: 'system' }# index.html.erb
-      format.json { render json: @comics }
-    end
-  end
-
-  def browse
-    @comic = Comic.find(params[:id])
-
-    respond_to do |format|
-      format.html { render layout: 'system' } # show.html.erb
-      format.json { render json: @comic }
-    end
-  end
-  
-  # GET /comics/new
-  # GET /comics/new.js
   def new
-    @comic = Comic.new
-    @comic.supply_default
-    respond_to do |format|
-      format.html # new.html.erb
-      format.js
-    end
+    form_new
   end
-
-  # GET /comics/1/edit
-  # GET /comics/1.js/edit
+  
   def edit
-    @comic = Comic.show(params[:id], @author)
-    @comic.supply_default
-    respond_to do |format|
-      format.html 
-      format.js
-    end
+    form_edit
   end
-
-  # POST /comics
-  # POST /comics.json
+  
   def create
-    params[:comic].merge! author_id: @author.id
-    @comic = Comic.new params[:comic]
-    @comic.supply_default 
-
-    respond_to do |format|
-      if @comic.save
-        format.html { redirect_to @comic, notice: 'Comic was successfully created.' }
-        format.json { render json: Comic.show(@comic.id, @author).to_json(Comic.show_json_include_opt), status: :created, location: @comic }
-      else
-        format.html { render action: "new" }
-        format.json { render json: @comic.errors, status: :unprocessable_entity }
-      end
-    end
+    set_model
+    @item = @my_model_class.new
+    @item.supply_default 
+    @my_model_class.fold_extend_settings params[@my_model_class.item_name]
+    @item.attributes = @item.permit_params params
+    @item.overwrite @operators
+    render_create
   end
-
-  # PUT /comics/1
-  # PUT /comics/1.json
+  
   def update
-    params[:comic].merge! author_id: @author.id
-    @comic = Comic.show(params[:id], @author)
-    respond_to do |format|
-      raise ActiveRecord::Forbidden unless @comic.own?(@author)
-      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
-    end
+    set_edit
+    @my_model_class.fold_extend_settings params[@my_model_class.item_name]
+    @item.attributes = @item.permit_params params
+    @item.overwrite @operators
+    render_update
   end
-
-  # DELETE /comics/1
-  # DELETE /comics/1.json
+  
   def destroy
-    @comic = Comic.find(params[:id])
-    if @comic.own? @author
-      @comic.destroy
-      respond_to do |format|
-        format.html { redirect_to comics_url }
-        format.json { head :ok }
-      end
-    else
-      format.html { render action: "edit" }
-      format.json { render json: @comic.errors, status: :unprocessable_entity }
-    end
+    set_model
+    @item = @my_model_class.edit(params[:id], @operators)
+    render_destroy '/home/' + @item.path_name
   end
+  
 end