当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript S3.putObject方法代码示例

本文整理汇总了TypeScript中aws-sdk.S3.putObject方法的典型用法代码示例。如果您正苦于以下问题:TypeScript S3.putObject方法的具体用法?TypeScript S3.putObject怎么用?TypeScript S3.putObject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在aws-sdk.S3的用法示例。


在下文中一共展示了S3.putObject方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: returnScreenshot

  // Returns the S3 url or local file path
  async returnScreenshot(): Promise<string> {
    const data = await screenshot(this.client)

    // check if S3 configured
    if (process.env['CHROMELESS_S3_BUCKET_NAME'] && process.env['CHROMELESS_S3_BUCKET_URL']) {
      const s3Path = `${cuid()}.png`
      const s3 = new AWS.S3()
      await s3.putObject({
        Bucket: process.env['CHROMELESS_S3_BUCKET_NAME'],
        Key: s3Path,
        ContentType: 'image/png',
        ACL: 'public-read',
        Body: new Buffer(data, 'base64'),
      }).promise()

      return `https://${process.env['CHROMELESS_S3_BUCKET_URL']}/${s3Path}`
    }

    // write to `/tmp` instead
    else {
      const filePath = `/tmp/${cuid()}.png`
      fs.writeFileSync(filePath, Buffer.from(data, 'base64'))

      return filePath
    }
  }
开发者ID:KhaledNobani,项目名称:chromeless,代码行数:27,代码来源:local-runtime.ts

示例2: returnPdf

  // Returns the S3 url or local file path
  async returnPdf(options?: PdfOptions): Promise<string> {
    const data = await pdf(this.client, options)

    // check if S3 configured
    if (
      process.env['CHROMELESS_S3_BUCKET_NAME'] &&
      process.env['CHROMELESS_S3_BUCKET_URL']
    ) {
      const s3Path = `${cuid()}.pdf`
      const s3 = new AWS.S3()
      await s3
        .putObject({
          Bucket: process.env['CHROMELESS_S3_BUCKET_NAME'],
          Key: s3Path,
          ContentType: 'application/pdf',
          ACL: 'public-read',
          Body: new Buffer(data, 'base64'),
        })
        .promise()

      return `https://${process.env['CHROMELESS_S3_BUCKET_URL']}/${s3Path}`
    } else {
      // write to `${os.tmpdir()}` instead
      const filePath = path.join(os.tmpdir(), `${cuid()}.pdf`)
      fs.writeFileSync(filePath, Buffer.from(data, 'base64'))

      return filePath
    }
  }
开发者ID:xw616525957,项目名称:chromeless,代码行数:30,代码来源:local-runtime.ts

示例3: deploy

 async deploy(args) {
   this._s3 = new (this._getAWS(this.resources)).S3();
   let bucket = this.resources.target;
   let source = path.resolve(this.resources.source);
   this.bucket = bucket;
   this.source = source;
   console.log("Deploy", source, "on S3 Bucket", bucket);
   await this.createBucket(bucket);
   let files = Finder.from(source).findFiles();
   // Should implement multithread here - cleaning too
   for (let i in files) {
     let file = files[i];
     let key = path.relative(source, file);
     // Need to have mimetype to serve the content correctly
     let mimetype = mime.contentType(path.extname(file));
     await this._s3
       .putObject({
         Bucket: bucket,
         Body: fs.createReadStream(file),
         Key: key,
         ContentType: mimetype
       })
       .promise();
     console.log("Uploaded", file, "to", key, "(" + mimetype + ")");
   }
   if (!this.resources.staticWebsite) {
     return;
   }
   await this._createWebsite();
 }
开发者ID:loopingz,项目名称:webda-shell,代码行数:30,代码来源:s3.ts

示例4: Promise

 return new Promise((ok, fail) => {
   s3.putObject(args, (err, data) => {
     if (err) {
       return fail(err);
     }
     ok();
   });
 });
开发者ID:colinmathews,项目名称:s3-append,代码行数:8,代码来源:s3-consolidator.ts

示例5: reject

 return new Promise<string>((resolve, reject) => {
   s3.putObject(params, (err, data) => {
     if (err) {
       reject(`S3 Error: ${err.message}`)
     } else {
       resolve(`https://${domain}/${params.Bucket}/${key}`)
     }
   })
 })
开发者ID:DipJar,项目名称:looker-slackbot,代码行数:9,代码来源:amazon_s3_store.ts

示例6:

 .then(() => {
   return this._s3
     .putObject({
       Bucket: bucket,
       Body: fs.createReadStream(info.src),
       Key: info.key,
       ContentType: mimetype
     })
     .promise();
 })
开发者ID:loopingz,项目名称:webda-shell,代码行数:10,代码来源:aws.ts

示例7: uploadToS3

export async function uploadToS3(data: string, contentType: string): Promise<string> {
  const s3ContentType = s3ContentTypes[contentType]
  if (!s3ContentType) {
    throw new Error(`Unknown S3 Content type ${contentType}`)
  }
  const s3Path = `${getS3ObjectKeyPrefix()}${cuid()}.${s3ContentType.extension}`
  const s3 = new AWS.S3()
  await s3
        .putObject({
          Bucket: getS3BucketName(),
          Key: s3Path,
          ContentType: contentType,
          ACL: 'public-read',
          Body: Buffer.from(data, 'base64'),
        })
        .promise()

  return `https://${getS3BucketUrl()}/${s3Path}`
}
开发者ID:nylen,项目名称:chromeless,代码行数:19,代码来源:util.ts


注:本文中的aws-sdk.S3.putObject方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。