@danmasta/ghost-gcs-adapter

1.0.1 • Public • Published

Ghost GCS Storage Adapter

Google Cloud Storage adapter for ghost cms platform

Features:

  • Easy to use
  • Bucket configuration
  • Custom protocol and host settings for cdn use
  • Custom gcs storage options support
  • Hashing algorithm configuration
  • Asset path prefixes
  • Support for generating unique file names on duplicates
  • Custom file name templating
  • Works with ghost versions v4.x and v5.x
  • Sanitization of file names
  • Ascii folding support

About

I wanted to deploy ghost in a HA environment using gcs as a storage backend, but the current options were out of date or didn't support custom hostnames and/or hashing. This library lets you store ghost assets to gcs with many options for using path prefixes, custom domains, content hashing, and file name templating.

Usage

Options

name type description
bucket string GCS bucket name. Default is undefined
protocol string What protocol to use for absolute urls. Default is https
host string What host to use for absolute urls. You can read about accessing public buckets here. Default is storage.googleapis.com
storageOptions object Custom storage options for configuring the GCS client. Default is undefined
hash boolean Wether or not to generate a hash from file contents. Default is false
hashAlgorithm string Which hashing algorithm to use when generating hashes. Default is md5
hashLength number Length of hash to use in hash string output. This slice is taken from the end of the string. Setting 0 will use the full hash. Default is 16
prefix string Prefix to use for gcs bucket path. If set, the gcs file path will become: $prefix/$dir/$filename. Default is undefined
unique boolean Wether or not to create unique filenames for duplicate uploads. Default is true
template string Template string for file names. If hash enabled default is: {{hashstr}}{{ext}}, otherwise: {{basename}}{{ext}}
incremental boolean If true and unique is enabled it will use the ghost default incremental algorithm for file names, appending an integer to the basename. This can be really slow because it has to check if the filepath exists in the bucket for each iteration. If false and unique is enabled it will just append random bytes to either the hash or the basename. Default is false
asciiFolding boolean If true converts all characters in the file name to their ascii equivalent, removing diacritic marks. Default is true
lowercase boolean If true will convert all characters in the file name to lowercase. Default is false

Sanitization

There is some default sanitization of file names that always happens and a couple optional features like ascii folding and lowercasing.

The default sanitization includes removing xml control characters and GCS wildcard characters as noted here in the GCS documentation. It will also replace all whitespace with hypens, and convert all back slashes to forward slashes.

Installation

There are currently 3 places where ghost will look for storage adapters by default:

/var/lib/ghost/current/node_modules/storage
/var/lib/ghost/content/adapters/storage - (content path setting)
/var/lib/ghost/current/core/server/adapters/storage

This means you need to install the plugin and it's dependencies at one of those locations. If you are using a Dockerfile, you can do so like this:

ENV GHOST_INSTALL /var/lib/ghost

RUN mkdir -p /tmp/gcs ${GHOST_INSTALL}/current/core/server/adapters/storage/gcs && \
    curl -s "$(npm view @danmasta/ghost-gcs-adapter dist.tarball)" | tar xz -C /tmp/gcs && \
    npm install --prefix /tmp/gcs/package --silent --only=production --no-optional --no-progress && \
    mv /tmp/gcs/package/* ${GHOST_INSTALL}/current/core/server/adapters/storage/gcs

Keep in mind that the default ghost docker image creates a volume at your ghost content path. This means any changes after the VOLUME declaration will be discarded, and you can't add new files to the content dir. You will need to install to another path, or move the files during a run time script after volume mounting.

Configuration

JSON via ghost config

{
    "storage": {
        "active": "gcs",
        "gcs": {
            "bucket": "my-gcs-bucket",
            "host": "storage.googleapis.com",
            "protocol": "https",
            "hash": true,
            "hashAlgorithm": "sha512",
            "hashLength": "16"
        }
    }
}

ENV Variables

storage__active=gcs
storage__gcs__bucket=my-gcs-bucket
storage__gcs__host=storage.googleapis.com
storage__gcs__protocol=https
storage__gcs__hash=true
storage__gcs__hashAlgorithm=sha512
storage__gcs__hashLength=16

Authentication

The easiest way to authenticate is to use a service account key and set the application default credentials environment variable:

GOOGLE_APPLICATION_CREDENTIALS=/var/secrets/google/key.json

You can also pass in a custom credential key file path or credentials object via the storageOptions setting, see here:

{
    "storage": {
        "active": "gcs",
        "gcs": {
            "storageOptions": { ... }
        }
    }
}

Testing

Testing is currently run using mocha and chai. To execute tests just run npm run test. To generate unit test coverage reports just run npm run coverage

Contact

If you have any questions feel free to get in touch

Package Sidebar

Install

npm i @danmasta/ghost-gcs-adapter

Weekly Downloads

5

Version

1.0.1

License

MIT

Unpacked Size

39 kB

Total Files

5

Last publish

Collaborators

  • danmasta