view app/controllers/pastes_controller.rb @ 151:db5164ff73a9

Always fill in @paste.ip when creating new one.
author Edho Arief <edho@myconan.net>
date Mon, 26 Nov 2012 21:53:12 +0700
parents 0f206bd4924f
children 500c09718fd7
line wrap: on
line source

class PastesController < ApplicationController
  caches_page :show

  # GET /1
  # GET /1.txt
  def show
    id = params[:id].to_i
    if id.to_s != params[:id]
      redirect_to paste_path(id)
      return
    end
    @paste = Paste.find(params[:id])

    expires_in 1.year, :public => true
    respond_to do |format|
      format.html # show.html.erb
      format.txt # show.txt.erb
    end
  end

  # GET /
  def new
    @paste = Paste.new
    begin
      @paste.paste = Paste.find(params[:base]).paste
    rescue
    end

    respond_to do |format|
      format.html # new.html.erb
    end
  end

  # POST /
  # POST /pastes.json
  # POST /pastes.txt
  def create
    @paste = Paste.new
    @paste.ip = request.remote_ip
    if params[:paste]
      if params[:paste][:paste_gzip_base64]
        # 1. decode from base64
        # 2. create StringIO from decoded string
        # 3. unzip and read the stream
        params[:paste][:paste] = Zlib::GzipReader.new(StringIO.new(Base64.decode64(params[:paste][:paste_gzip_base64]))).read
      end
      unless params[:paste][:paste].blank?
        @paste.paste = params[:paste][:paste]
      end
    end

    begin
      respond_to do |format|
        if @paste.save
          format.html { redirect_to @paste, :notice => 'Paste was successfully created.' }
          format.json { render :json => @paste, :status => :created, :location => @paste }
        else
          format.html { render :action => "new" }
          format.json { render :json => @paste.errors, :status => :unprocessable_entity }
        end
        format.txt
      end
    rescue ActiveRecord::RecordNotUnique
      redirect_to paste_path(Paste.where(:ip => @paste.ip, :paste_hash => @paste.paste_hash).first)
    end
  end

end