@ovotech/apollo-datasource-s3
TypeScript icon, indicating that this package has built-in type declarations

1.1.2 • Public • Published

Apollo S3DataSource

CircleCI npm (scoped)

S3DataSource is responsible for fetching data from a given S3 bucket using aws js API. Integrates with the cache and expires tags on S3, following the example of Apollo Data Sources. This useful if you want to read data from a private / restricted s3 bucket.

Using

yarn add @ovotech/apollo-datasource-s3

This module ships with TypeScript types. It also has helper methods to deal with JSON objects directly.

import { S3DataSource } from '@ovotech/apollo-datasource-s3';
import { S3 } from 'aws-sdk';

class MyS3DataSource extends S3DataSource {
  async get() {
    return await this.getObjectJson({ Bucket: 'bucket', Key: 'data.json' });
  }

  async put(data) {
    return await this.putObjectJson(data, { Bucket: 'bucket', Key: 'test' });
  }
}

const s3 = new S3();
const ds = new MyS3DataSource(s3);

You can also access the lower level api to load the raw data from s3, as well as list and delete items. Those request mimic the s3 api itself, but adds a layer of caching in front of it.

class MyS3DataSource extends S3DataSource {
  async get() {
    return await this.getObject({ Bucket: 'bucket', Key: 'data.json' });
  }

  async put(data) {
    return await this.putObject({ Bucket: 'bucket', Key: 'test', Body: 'data' });
  }

  async list() {
    return await this.listObjects({ Bucket: 'bucket' });
  }

  async delete() {
    return await this.deleteObject({ Bucket: 'bucket', Key: 'data.json' });
  }
}

Running the tests

The tests require a running s3 mock server, and we're using localstack for that. You'll need to start the s3 server:

SERVICES=s3 localstack start

After which you can run all the tests:

yarn test

Coding style (linting, etc) tests

Style is maintained with prettier and tslint

yarn lint

Deployment

To deploy a new version, push to master and then create a new release. CircleCI will automatically build and deploy a the version to the npm registry.

Contributing

Have a bug? File an issue with a simple example that reproduces this so we can take a look & confirm.

Want to make a change? Submit a PR, explain why it's useful, and make sure you've updated the docs (this file) and the tests (see test/S3DataSource.spec.ts). You can run the tests with SERVICES=s3 localstack start and yarn test.

Responsible Team

  • Boost Internal Tools (BIT)

License

This project is licensed under Apache 2 - see the LICENSE file for details

Readme

Keywords

none

Package Sidebar

Install

npm i @ovotech/apollo-datasource-s3

Weekly Downloads

21

Version

1.1.2

License

Apache-2.0

Unpacked Size

27.1 kB

Total Files

29

Last publish

Collaborators

  • ovox
  • oep-accounts-bot
  • ovo.backstage.admins
  • bookings-team
  • orion-bot
  • bizval-bot
  • oeptariffs
  • props
  • metering-reads-health-bot
  • ovotech-identity
  • paceteamkaluza
  • trading-and-dispatch
  • retail-payg-tech
  • accrecovo
  • ovo.trading.tech
  • qe-team
  • ovotech-smart-thermostat
  • rise-team
  • engagement-insights
  • myovo-self-serve-service-account
  • mars-rover
  • ape-team
  • kaluza-devex
  • ohs-aurora
  • kaluza-rnr
  • ipa-bot
  • kawbot
  • data.discovery.ovo
  • ovotech-sg
  • ovotech-qs
  • ovoenergyapps
  • homemoves
  • ovo-oot-bot
  • cp-ui-tooling
  • ovo-bit-tech
  • sir_hiss