mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
586 B
22 lines
586 B
module.exports = upload
|
|
|
|
var fs = require('fs')
|
|
, Stream = require("stream").Stream
|
|
|
|
function upload (where, file, etag, nofollow, cb) {
|
|
if (typeof nofollow === "function") cb = nofollow, nofollow = false
|
|
if (typeof etag === "function") cb = etag, etag = null
|
|
|
|
if (file instanceof Stream) {
|
|
return this.request("PUT", where, file, etag, nofollow, cb)
|
|
}
|
|
|
|
fs.stat(file, function (er, stat) {
|
|
if (er) return cb(er)
|
|
var s = fs.createReadStream(file)
|
|
s.size = stat.size
|
|
s.on("error", cb)
|
|
|
|
this.request("PUT", where, s, etag, nofollow, cb)
|
|
}.bind(this))
|
|
}
|
|
|