更改上传文件的tmp文件夹

时间:2013-06-12 12:45:06

标签: ruby-on-rails ruby file-upload rack

我上传的所有文件都临时存储在/tmp文件夹中。

我想更改此文件夹,因为/tmp文件夹太小。 它无法帮助我上传文件,并在上传后将其移动到其他地方。

我已尝试将ENV['TMPDIR']ENV['TMP']ENV['TEMP']更改为其他内容,但我上传的文件(RackMultipart *)仍然临时存储在/tmp。< / p>

如何更改此行为?当然我可以将/tmp挂载到其他地方,但是更容易告诉Rails / Rack / Thin / Apache / ...存储文件的位置。我没有使用回形针等。

对于我的服务器,我使用Apache作为代理平衡器将流量传递给4个瘦服务器。

我使用ruby 2.0进行了Rails 4 rc1项目。

编辑:

def create
 file         = params[:sample_file][:files].first
 md5_filename = Digest::MD5.hexdigest(file.original_filename)
 samples      = Sample.where("name in (?)",  params["samples_#{md5_filename}"].map {|exp| exp.split(" (").first}) rescue []
 file_kind    = FileKind.find(params[:file_kind])

 @sample_file                    = SampleFile.new
 @sample_file.file_kind          = file_kind
 @sample_file.samples            = samples
 @sample_file.original_file_name = file.original_filename 
 @sample_file.uploaded_file      = file #TODO: ..
 @sample_file.user               = current_user
 ...
  #many other stuff
 ...

 respond_to do |format|
  if @sample_file.save
    format.html {
      render :json => [@sample_file.to_jq_upload].to_json,
      :content_type => 'text/html',
      :layout => false
    }
    format.json { render json: {files: [@sample_file.to_jq_upload]}, status: :created, location: @sample_file }
  else
    format.html { render action: 'new' }
    format.json { render json: {files: [@sample_file.to_jq_upload]}.to_json, status: :ok}
  end
 end
end

1 个答案:

答案 0 :(得分:4)

如果设置TMPDIR,TMP,TEMP不起作用,则可能是您指定的目录不存在或不可写。或者$ SAFE变量是&gt; 0.使用函数Dir.tmpdir确定tmp文件夹(参见http://www.ruby-doc.org/stdlib-1.9.3/libdoc/tmpdir/rdoc/Dir.html#method-c-tmpdir)。

class Dir  
  def Dir::tmpdir
    tmp = '.'
    if $SAFE > 0
      tmp = @@systmpdir
    else
      for dir in [ENV['TMPDIR'], ENV['TMP'], ENV['TEMP'], @@systmpdir, '/tmp']
        if dir and stat = File.stat(dir) and stat.directory? and stat.writable?
          tmp = dir
          break
        end rescue nil
      end
      File.expand_path(tmp)
    end
  end
end

Ruby 2.1

def Dir::tmpdir
  if $SAFE > 0
    tmp = @@systmpdir
  else
    tmp = nil
    for dir in [ENV['TMPDIR'], ENV['TMP'], ENV['TEMP'], @@systmpdir, '/tmp', '.']
      next if !dir
      dir = File.expand_path(dir)
      if stat = File.stat(dir) and stat.directory? and stat.writable? and
          (!stat.world_writable? or stat.sticky?)
        tmp = dir
        break
      end rescue nil
    end
    raise ArgumentError, "could not find a temporary directory" if !tmp
    tmp
  end
end

因此,如果您要设置TMP env变量,请确保以下行为真

  1. $ SAFE == 0
  2. File.stat(“you_dir”)
  3. File.stat( “you_dir”)。目录?
  4. File.stat( “you_dir”)。可写?
  5. 设置tempdir的另一种方法是覆盖rails初始化程序中的tmpdir,但显然这会绕过任何目录检查,所以你必须确保它存在/可写

    class Dir
      def self.tmpdir
        "/your_directory/"
      end
    end