0
http = require('http')
https = require('https')
fs = require('fs')
url = require('url')
req = require('request')
server = require('node-router').getServer()

# run server
server.listen process.env.PORT || 8080, '0.0.0.0'

# stop the error
server.get "/favicon.ico", (req, res)->
  return ""

# display image
server.get(new RegExp("^/(.*)(?:.jpg)?$"), (req, res, match) ->

  download(match, output, ()->
    img = fs.readFile(output, (err, data)->
      res.writeHead(200, {'Content-Type' : 'image/jpeg'})
      res.end(data, 'binary')
    )
  )
)

# download image to our host
download = (match, output, callback) ->

  #fetch
  fetch(match, (p_url)->
    #save file
    uri = url.parse(p_url)
    host = uri.hostname
    path = uri.pathname

    if uri.protocol == "https:"
      r = https
    else
      r = http

    r.get host:host, path:path, (res)->
      res.setEncoding 'binary'

      img=''
      res.on 'data', (chunk)->
        img+=chunk

      res.on 'end', ()->
        fs.writeFile output, img, 'binary', (err)->
          callback()
  )

# fetch image from google images
fetch = (query, cb) ->
  uri = 'http://ajax.googleapis.com/ajax/services/search/images?v=1.0&rsz=8&q=' + encodeURI(query)

  req {uri: uri}, (e, res, body) ->
    res = JSON.parse(body)['responseData']['results'][0]
    unless res
      cb("https://img.skitch.com/20110825-ewsegnrsen2ry6nakd7cw2ed1m.png")
    cb(res['unescapedUrl'])

ファイルはダウンロードファイルなので、フェッチとダウンロード機能に問題はありません。このコードは画像をブラウザに返すはずですが、代わりに大量の json を返しますhttp://pastebin.com/23CWicgB。node-inspector と node を使用してデバッグしようとすると、結果は何とかバイナリでしたが、json が返される理由はまだわかりません。

4

1 に答える 1

1

HTTP 経由でユーザーに画像を返すことに関心がある場合: フレームワークを使用してこれらの要求を処理することを検討してください。Express.js は NodeJS コミュニティの標準のようです。

ここでは、すでに完了している多くの作業を行っています。

于 2013-01-23T17:35:49.233 に答える