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 が返される理由はまだわかりません。