1.0.0 • Published 4 years ago

@allanferencz/file-adapters v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

File Adapters

The File field type can support files hosted in a range of different contexts, e.g. in the local filesystem, or on a cloud based file server.

Different contexts are supported by different file adapters. This package contains the built-in file adapters supported by KeystoneJS.

LocalFileAdapter

Usage

const { LocalFileAdapter } = require('@keystonejs/file-adapters');

const fileAdapter = new LocalFileAdapter({
  /*...config */
});

Config

OptionTypeDefaultDescription
srcStringRequiredThe path where uploaded files will be stored on the server.
pathStringValue of srcThe path from which requests for files will be served from the server.
getFilenameFunctionnullFunction taking a { id, originalFilename } parameter. Should return a string with the name for the uploaded file on disk.

Note: src and path may be the same.

Methods

delete

Takes an object with a file key representing the filename and deletes that file on disk. This can be combined with hooks to implement delete-on-file-change and delete-on-list-delete functionality:

const { File } = require('@keystonejs/fields');

const fileAdapter = new LocalFileAdapter({
  src: './files',
  path: '/files',
});

keystone.createList('UploadTest', {
  fields: {
    file: {
      type: File,
      adapter: fileAdapter,
      hooks: {
        beforeChange: ({ existingItem = {} }) => fileAdapter.delete(existingItem),
      },
    },
  },
  hooks: {
    afterDelete: ({ existingItem = {} }) => fileAdapter.delete(existingItem),
  },
});

CloudinaryFileAdapter

Usage

const { CloudinaryAdapter } = require('@keystonejs/file-adapters');

const fileAdapter = new CloudinaryAdapter({
  /*...config */
});

Config

OptionTypeDefaultDescription
cloudNameStringRequired
apiKeyStringRequired
apiSecretStringRequired
folderStringundefined

Methods

delete

Takes an object with an id key representing the public file ID and deletes that file on the server.

S3FileAdapter

const { S3Adapter } = require('@keystonejs/file-adapters');

const CF_DISTRIBUTION_ID = 'cloudfront-distribution-id';
const S3_PATH = 'uploads';

const fileAdapter = new S3Adapter({
  accessKeyId: 'ACCESS_KEY_ID',
  secretAccessKey: 'SECRET_ACCESS_KEY',
  region: 'us-west-2',
  bucket: 'bucket-name',
  folder: S3_PATH,
  publicUrl: ({ id, filename, _meta }) =>
    `https://${CF_DISTRIBUTION_ID}.cloudfront.net/${S3_PATH}/${filename}`,
  s3Options: {
    apiVersion: '2006-03-01',
  },
  uploadParams: ({ filename, id, mimetype, encoding }) => ({
    Metadata: {
      keystone_id: id,
    },
  }),
});
OptionTypeDefaultDescription
accessKeyIdStringRequiredAWS access key ID
secretAccessKeyStringRequiredAWS secret access key
regionStringRequiredAWS region
bucketStringRequiredS3 bucket name
folderStringRequiredUpload folder from root of bucket
getFilenameFunctionnullFunction taking a { id, originalFilename } parameter. Should return a string with the name for the uploaded file on disk.
publicUrlFunctionBy default the publicUrl returns a url for the S3 bucket in the form https://{bucket}.s3.amazonaws.com/{key}/{filename}. This will only work if the bucket is configured to allow public access.
s3OptionsObjectundefinedFor available options refer to the AWS S3 API
uploadParamsObject|Function{}A config object or function returning a config object to be passed with each call to S3.upload. For available options refer to the AWS S3 upload API.

Methods

delete

Deletes the provided file in the S3 bucket. Takes a file object (such as the one returned in file field hooks) and an optional options argument for overriding S3.deleteObject options. Options Bucket and Key are set by default. For available options refer to the AWS S3 deleteObject API.

const deleteParams = {
  BypassGovernanceRetention: true,
};

keystone.createList('Document', {
  fields: {
    file: {
      type: File,
      adapter: fileAdapter,
      hooks: {
        beforeChange: ({ existingItem }) => {
          if (existingItem && existingItem.file) {
            fileAdapter.delete(existingItem.file, deleteParams);
          }
        },
      },
    },
  },
  hooks: {
    afterDelete: ({ existingItem }) => {
      if (existingItem.file) {
        fileAdapter.delete(existingItem.file, deleteParams);
      }
    },
  },
});

AzureFileAdapter

const { AzureAdapter } = require('@keystonejs/file-adapters');


const fileAdapter = new AzureAdapter({
  accountName: `STORAGE_ACCOUNT_NAME`,
  accountKey: `STORAGE_ACCOUNT_ACCESS_KEY`,
  containerName: 'CONTAINER_NAME'
});
OptionTypeDefaultDescription
accountNameStringRequiredAzure Storage Account Name
accountKeyStringRequiredAzure Storage Account Key
containerNameStringRequiredAzure Storage Container Name

Methods

delete

Deletes the provided file in the Azure Blob Storage Account. Takes a file object (such as the one returned in file field hooks).

keystone.createList('Users', {
  fields: {
    avatar: {
      type: File,
      adapter: fileAdapter,
      hooks: {
        beforeChange: ({ existingItem }) => {
          if (existingItem && existingItem.avatar) {
            fileAdapter.delete(existingItem.avatar);
          }
        },
      },
    },
  },
  hooks: {
    afterDelete: ({ existingItem }) => {
      if (existingItem.avatar) {
        fileAdapter.delete(existingItem.avatar);
      }
    },
  },
});