ckeditor5-sss-upload

1.1.0 • Public • Published

S3 Image Upload Plugin for Ckeditor5

This is a fork of https://github.com/pourquoi/ckeditor5-simple-upload, that substitutes standard upload support for direct to S3 uploads.

Build Integration

https://docs.ckeditor.com/ckeditor5/latest/builds/guides/development/custom-builds.html

npm install ckeditor5-sss-upload

Add this plugin and remove the ckfinder and easyimage plugins

// build-config.js
 
module.exports = {
  // ...
 
  plugins: [
    "@ckeditor/ckeditor5-essentials/src/essentials",
    // ...
 
    //'@ckeditor/ckeditor5-adapter-ckfinder/src/uploadadapter',
    //'@ckeditor/ckeditor5-easy-image/src/easyimage',
 
    "ckeditor5-sss-upload/src/s3upload"
 
    // ...
  ],
 
  // ...
 
  config: {
    toolbar: {
      items: [
        "headings",
        "bold",
        "italic",
        "imageUpload",
        "link",
        "bulletedList",
        "numberedList",
        "blockQuote",
        "undo",
        "redo"
      ]
    }
    // ...
  }
};

Configuration

ClassicEditor.create(document.querySelector("#editor"), {
  s3Upload: {
    policyUrl: "http://127.0.0.1/my-upload-endpoint",
    mapUrl: ({ location, bucket, key }) => {
      return location;
    }
  }
});

Backend

The endpoint will receive a filename as a query parameter, and will need to respond with s3 credentials JSON in the following format.

{
    "endpoint_url": " ... ",
    "params": {
        "key": " ... ",
        "acl": " ... ",
        "success_action_status": " ... ",
        "policy": " ... ",
        "x-amz-algorithm": " ... ",
        "x-amz-credential": " ... ",
        "x-amz-date": " ... ",
        "x-amz-signature": " ... "
    }
}

Readme

Keywords

Package Sidebar

Install

npm i ckeditor5-sss-upload

Weekly Downloads

8

Version

1.1.0

License

MIT

Unpacked Size

6.41 kB

Total Files

4

Last publish

Collaborators

  • sugarstack