从其网址下载图片并直接将其上传到AWS

时间:2016-08-23 15:00:38

标签: http amazon-web-services meteor download upload

我无法找到令人满意的答案。给定一个图像URL,我想下载它(不保存到磁盘)并立即将其上传到AWS Bucket。这是我的代码:

  self.downloadImage = function(url){
        let response = HTTP.get(url, {
            encoding:null // for binary
        })
        if (!response.headers['content-type'].split('/')[0] == 'image'){
            throw new Error("not an image")
        }
        return {
            data : response.content,
            contentType : response.headers['content-type']
        }
    }

    self.uploadImage = function(websiteName, imgUrl, callback){
        // we retrieve the image
        let image = downloadImage(imgUrl)
        let imageName = self.extractImageName(imgUrl)
        let filename = 'img/' +websiteName + "/" + imageName
        let newUrl = `https://s3.${Meteor.settings.AWS.REGION}.amazonaws.com/${Meteor.settings.S3.BUCKET_NAME}/${filename}`
        // makes the async function sync like
        let putObjectSync = Meteor.wrapAsync(s3Client.putObject, s3Client)
        try{
            let res = putObjectSync({
                Body: image.data,
                ContentType : image.contentType,
                ContentEncoding: 'base64',
                Key: filename,
                ACL:'public-read',
                Bucket: Meteor.settings.S3.BUCKET_NAME
            })
            return newUrl
        } catch(e) {
            return null
        }
    }

除了图像看起来已损坏外,一切正常。到目前为止我试过了:

  • 使用aldeed:http,以便在下载时将编码设置为null,这对于图片来说似乎是一个很好的策略

  • 不使用它并直接将响应的文本内容作为上传主体传递

  • 在aws中添加base64编码

仍然腐败。我觉得非常接近解决方案,因为图像是正确的类型和文件大小,但仍然无法在浏览器或我的计算机上打印。有关如何正确编码/检索数据的想法吗?

0 个答案:

没有答案