OSDN Git Service

t#32402:add file prof
[pettanr/pettanr.git] / app / controllers / original_pictures_controller.rb
index 437f5ff..6f70a0e 100644 (file)
@@ -1,85 +1,52 @@
+#原画
 class OriginalPicturesController < ApplicationController
-  before_filter :authenticate_user!, :only => [:index, :show, :new, :edit, :create, :update, :destroy]
+  layout 'test' if MagicNumber['test_layout']
+  before_filter :authenticate_reader, :only => [:show, :history]
+  before_filter :authenticate_user, :only => [:index, :new, :edit, :create, :update, :destroy]
+  before_filter :authenticate_artist, :only => [:index, :new, :edit, :create, :update, :destroy]
   before_filter :authenticate_admin!, :only => [:list, :browse]
-  before_filter :authenticate_artist, :only => [:index, :show, :new, :edit, :create, :update, :destroy]
   
-  private
-  
-  def set_image(prm)
-    img = nil
-    if (f = prm[:original_picture][:file]).respond_to?(:read)
-      if f.size > 1000000
-        @original_picture.width = 0
-        @original_picture.height = 0
-        @original_picture.ext = 'none'
-        @original_picture.filesize = 1.megabytes
-      else
-        img = Magick::Image.from_blob(f.read).shift
-        @original_picture.width = img.columns
-        @original_picture.height = img.rows
-        @original_picture.ext = img.format.downcase
-        @original_picture.filesize = f.size
-      end
-    else
-      dat = Base64.decode64(prm[:original_picture][:file].to_s.gsub(' ', '+')) #rubyのバグ?+でデコードされるべきキャラがスペースになる
-      img = Magick::Image.from_blob(dat).shift
-      @original_picture.width = img.columns
-      @original_picture.height = img.rows
-      @original_picture.ext = img.format.downcase
-      @original_picture.filesize = 1000
-    end
-    img
-  end
-  
-  def authenticate_artist
-    if @author.artist?
-      true
-    else
-      respond_to do |format|
-        format.html { redirect_to new_artist_path, :status => :found }
-        format.js { render "artists/new" }
-        format.json { 
-          raise ActiveRecord::Forbidden
-        }
-      end
-      false
-    end
-  end
-  
-  public
-  
-  # GET /original_pictures
-  # GET /original_pictures.json
   def index
     @page = OriginalPicture.page params[:page]
     @page_size = OriginalPicture.page_size params[:page_size]
-    @original_pictures = OriginalPicture.list(@artist.id, {}, @page, @page_size)
+    @original_pictures = OriginalPicture.mylist(@artist, @page, @page_size)
 
     respond_to do |format|
-      format.html # index.html.erb
+      format.html {
+        @paginate = OriginalPicture.mylist_paginate(@artist, @page, @page_size)
+      }
       format.json { render json: @original_pictures.to_json(OriginalPicture.list_json_opt) }
     end
   end
 
-  # GET /original_pictures/1
-  # GET /original_pictures/1.json
   def show
-    @original_picture = OriginalPicture.show(params[:id], @author)
-#    if params[:subdir] == 'refresh'
-#      refresh 
-#      return
-#    end
-
+    @original_picture = OriginalPicture.show(params[:id], [@artist, @admin])
+    
     respond_to do |format|
       opt = {:type => @original_picture.mime_type, :disposition=>"inline"}
       format.png { send_data(@original_picture.restore, opt ) }
       format.gif { send_data(@original_picture.restore, opt ) }
       format.jpeg { send_data(@original_picture.restore, opt ) }
-      format.html # show.html.erb
-      format.json { render json: @original_picture}
+      format.html {
+        #ライセンス付与のために原画ライセンスグループ作成準備
+        @original_picture_license_group  = OriginalPictureLicenseGroup.new :original_picture_id => @original_picture.id
+        render
+      }
+      format.prof  { render :template => 'top/prof', :layout => true }
+      format.json { render json: @original_picture.to_json(OriginalPicture.show_json_opt)}
     end
   end
 
+  def history
+    @original_picture = OriginalPicture.show(params[:id], [@artist, @admin])
+    @history = @original_picture.history
+    
+    respond_to do |format|
+      format.html # index.html.erb
+      format.json { render json: @history.to_json }
+    end
+  end
+  
   def list
     @original_pictures = OriginalPicture.all
 
@@ -98,98 +65,81 @@ class OriginalPicturesController < ApplicationController
     end
   end
 
-  def refresh
-    @original_picture = OriginalPicture.find(params[:id])
-    img = Magick::Image.from_blob(@original_picture.restore).shift
-    @original_picture.store img
-    respond_to do |format|
-      format.html { redirect_to original_pictures_url }
-    end
-  end
-  
-  # GET /original_pictures/new
-  # GET /original_pictures/new.json
   def new
     @original_picture = OriginalPicture.new
-    @original_picture.supply_default @artist
+    @original_picture.supply_default
 
     respond_to do |format|
       format.html # new.html.erb
       format.js
-      format.json { render json: @original_picture }
+      format.json { render json: @original_picture.to_json(OriginalPicture.show_json_opt) }
     end
   end
 
-  # GET /original_pictures/1/edit
   def edit
-    @original_picture = OriginalPicture.show(params[:id], @author)
+    @original_picture = OriginalPicture.edit(params[:id], @artist)
     respond_to do |format|
       format.html
       format.js
     end
   end
 
-  # POST /original_pictures
-  # POST /original_pictures.json
   def create
+    @imager = if params[:original_picture]
+      PettanImager.load set_image params[:original_picture][:file]
+    else
+      nil
+    end
     @original_picture = OriginalPicture.new
-    img = set_image params
-    @original_picture.artist_id = @author.artist.id
-    @original_picture.license_id = @author.artist.default_license_id
+    @original_picture.supply_default
+    @original_picture.overwrite @artist
 
     respond_to do |format|
-      OriginalPicture.transaction do
-        if @original_picture.save
-          if @original_picture.store(img)
-            format.html { redirect_to @original_picture, notice: 'Original picture was successfully created.' }
-            format.json { render json: @original_picture, status: :created, location: @original_picture }
-          else
-            format.html { redirect_to @original_picture, notice: 'Failed! Original picture was NOT created.' }
-            format.json { render json: @original_picture.errors, status: :unprocessable_entity }
-          end
-        else
-          format.html { render action: "new" }
-          format.json { render json: @original_picture.errors, status: :unprocessable_entity }
-        end
+      if @original_picture.store(@imager)
+        flash[:notice] = I18n.t('flash.notice.created', :model => OriginalPicture.model_name.human)
+        format.html { redirect_to @original_picture }
+        format.json { render json: @original_picture.to_json(OriginalPicture.show_json_opt), status: :created, location: @original_picture }
+      else
+        flash[:notice] = I18n.t('flash.notice.not_created', :model => OriginalPicture.model_name.human)
+        format.html { render action: "new" }
+        format.json { render json: @original_picture.errors, status: :unprocessable_entity }
       end
     end
   end
 
-  # PUT /original_pictures/1
-  # PUT /original_pictures/1.json
   def update
-    @original_picture = OriginalPicture.show(params[:id], @author)
-    img = set_image params
+    @imager = if params[:original_picture]
+      PettanImager.load set_image params[:original_picture][:file]
+    else
+      nil
+    end
+    @original_picture = OriginalPicture.edit(params[:id], @artist)
+    @original_picture.overwrite @artist
 
     respond_to do |format|
-      OriginalPicture.transaction do
-        if @original_picture.save
-          if @original_picture.store(img)
-            format.html { redirect_to @original_picture, notice: 'Original picture was successfully updated.' }
-            format.json { head :ok }
-          else
-            format.html { redirect_to @original_picture, notice: 'Failed! Original picture was NOT created.' }
-            format.json { render json: @original_picture.errors, status: :unprocessable_entity }
-          end
-        else
-          format.html { render action: "edit" }
-          format.json { render json: @original_picture.errors, status: :unprocessable_entity }
-        end
+      if @original_picture.store(@imager)
+        flash[:notice] = I18n.t('flash.notice.updated', :model => OriginalPicture.model_name.human)
+        format.html { redirect_to @original_picture }
+        format.json { render json: @original_picture.to_json(OriginalPicture.show_json_opt), status: :created, location: @original_picture }
+      else
+        flash[:notice] = I18n.t('flash.notice.not_updated', :model => OriginalPicture.model_name.human)
+        format.html { render action: "edit" }
+        format.json { render json: @original_picture.errors, status: :unprocessable_entity }
       end
     end
   end
 
-  # DELETE /original_pictures/1
-  # DELETE /original_pictures/1.json
   def destroy
-    @original_picture = OriginalPicture.find(params[:id], @author)
-    OriginalPicture.transaction do
-      @original_picture.destroy
-    end
+    @original_picture = OriginalPicture.edit(params[:id], @artist)
     
     respond_to do |format|
-      format.html { redirect_to original_pictures_url }
-      format.json { head :ok }
+      if @original_picture.destroy_with_resource_picture
+        format.html { redirect_to original_pictures_url }
+        format.json { head :ok }
+      else
+        format.html { redirect_to original_picture_path(@original_picture) }
+        format.json { render json: @original_picture.errors, status: :unprocessable_entity }
+      end
     end
   end
 end