使用curb(rails gem)使用convertapi转换文件

时间:2015-09-14 00:01:13

标签: ruby-on-rails curb convertapi

我正在开发一个Rails应用程序,将我存储在Amazon S3上的Word文件发送到convertapi,以便转换为PDF。我使用paperclip gem来管理文件,curb gem用来提出实际请求。

# model with property has_attached_file :attachment
def convert_docx_to_pdf
    base = "https://do.convertapi.com/Word2Pdf" 
    api_key = '*****'
    file = open(attachment.url)
    c = Curl::Easy.new(base)
    c.multipart_form_post = true
    c.http_post(
      Curl::PostField.file('thing[file]', file.path), 
      Curl::PostField.content('ApiKey', api_key)
    )
end

我正在尝试按照curb here的文档进行操作。

当我从rails控制台运行它时,它只返回true。我想捕获生成的PDF。

(如果我在convertapi的test endpoint tool上手动上传文件,我已经确认这是有效的。)

更新09.18.15

我实施了Jonas建议的更改。这是新代码:

def convert_docx_to_pdf
  base = "https://do.convertapi.com/Word2Pdf"
  api_key = ENV['CONVERTAPI_API_KEY']
  file = open(attachment.url)

  Curl::Easy.new('https://do.convertapi.com/Word2Pdf') do |curl|
    curl.multipart_form_post = true
    curl.http_post(Curl::PostField.content('ApiKey', api_key), Curl::PostField.file('File', file.path))

    return curl.body_str
  end
end

仍然没有运气,curl.body_str只返回"Bad Request"

file.path = /var/folders/33/nzmm899s4jg21mzljmf9557c0000gn/T/open-uri20150918-13136-11z00lk

2 个答案:

答案 0 :(得分:1)

这是如何将curb用于多部分帖子请求的正确方法:

Curl::Easy.new('https://do.convertapi.com/Word2Pdf') do |curl|
  curl.multipart_form_post = true
  curl.http_post(Curl::PostField.content('ApiKey', 'xxxxxxxxx'), Curl::PostField.file('File', 'test.docx'))
  File.write('out.pdf', curl.body_str)
end

度过愉快的一天

答案 1 :(得分:1)

原来问题很简单。 convertapi的Word转换为PDF转换工具需要具有Word扩展名的文件。我在将文件发送到S3的过程中丢失了扩展名。 (file.path = /var/folders/33/nzmm899s4jg21mzljmf9557c0000gn/T/open-uri20150918-13136-11z00lk)我能够通过测试我从S3中提取的一个实际文件来对照convertapi web gui来验证这一点。

理想情况下,我确保在提交到S3时不会丢失扩展名,但同时以下代码可以解决问题:

def convert_docx_to_pdf
  base = "https://do.convertapi.com/Word2Pdf"
  api_key = ENV['CONVERTAPI_API_KEY']
  file = open(attachment.url)
  local_file_path = "#{file.path}.docx"
  FileUtils.cp(file.path, local_file_path) # explicitly set the extension portion of the string

  Curl::Easy.new('https://do.convertapi.com/Word2Pdf') do |curl|
    curl.multipart_form_post = true
    binding.pry
    curl.http_post(Curl::PostField.content('ApiKey', api_key), Curl::PostField.file('File', local_file_path))

    # Write to PDF opened in Binary (I got better resulting PDFs this way)
    f = File.open('public/foo.pdf', 'wb')
    f.write(curl.body_str)
    f.close
  end
  FileUtils.rm(local_file_path)
end