Skip to content

Retrieve content from the Shampoo CMS API on shampoo.io.

License

Notifications You must be signed in to change notification settings

GozuPro/grunt-shampoo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grunt-shampoo

Retrieve content from the Shampoo CMS API on shampoo.io.

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-shampoo --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-shampoo');

Shampoo requires private credentials to access content. These can be stored either in the Gruntfile options, or in a configuration file .shampoorc (recommended) and ignored from the GIT repository.

{
  "aws": {
    "key" : "myAWSKeyHere",
    "secret": "myAWSSecretHere",
    "bucket": "myAWSBucketNameHere"
  },
  "key": "myShampooKeyHere",
  "secret": "myShampooSecretHere"
}

Note: The AWS items are only required if you've set the shampoo.options.mediaOut path.

The "shampoo" task

Overview

In your project's Gruntfile, add a section named shampoo to the data object passed into grunt.initConfig().

grunt.initConfig({
  shampoo: {
    options: {
      domain: "yourdomain.shampoo.io",
      mediaOut: "app/images/"
    },
    en: {
      options: {
        query: "dump/json/locale/en",
        out: "content/en.json"
      }
    },
    fr: {
      options: {
        query: "dump/json/locale/fr",
        out: "content/fr.json"
      }
    },
    allLocales: {
      options: {
        query: "dump/zip/pages/locales",
        zipOut: "content/"
      }
    }
  }
});

Options

options.domain

Type: String Default value: none Required

The full domain name of your shampoo.io site. If your Shampoo installation is http://soap.shampoo.io, then you would enter in soap.shampoo.io here.

options.api

Type: Number Default value: 1 Required

The version of the API to access.

options.query

Type: String Default value: dump/json/single-file

The full query of the API call. See Shampoo API documentation for all possible outputs.

dump are content dumps useful for pulling down content from Shampoo in one go.

Possible types for this segment are: dump, page, pages, models, model, locales and locale.

For the second segment, the following formats are available: json and zip.

single-file outputs all content in Shampoo in one file. single-file?meta=1

options.out

Type: String Default value: none Required

The path of the output file to save the API response to. Be sure the file extention matches with the format.

out: "data/content.json"

options.mediaOut

Type: String Default value: none Optional

Save down all media files that have been uploaded to AWS S3 by specifying a directory relative to the project root. Only images that have not yet been downloaded from S3 will download, effectively keeping your local media files synced down with S3.

Note: Valid AWS S3 credentials are required in the .shampoorc configuration.

options.mediaCwd

Type: String Default value: none Optional

Specify relative media path to be output in JSON if different from mediaOut. E.g. If you download media files to app/images/ but would like your image path in the JSON to be output as images/, you can specify so with this option.

options.zipOut

Type: String Default value: none Optional

Specify a relative path for which a collection of pages will be unzipped to. Note, only API calls to shampoo with a query that begins with the string "/dump/zip/*" will utilize this parameter.

For backup purposes, for every successful call with the query of "/dump/zip/*", a zip file will be created in the subdirectory {options.zipOut}/content-backups. The zip file has a filename standard of "content-dump-{UnixTimeStampHere}.zip". The zip's contents are automatically unpacked to options.zipOut.

Usage Examples

In this example, the common options are set with credentials and shared options. Individual tasks are set with custom options to retrieve content by locale.

shampoo: {
  options: {
    domain: "yoursite.shampoo.io",
    mediaOut: "app/images/",
    mediaCwd: "images/"
  },
  en: {
    options: {
      query: "dump/json/locale/en",
      out: "app/content/en.json"
    }
  },
  fr: {
    options: {
      query: "dump/json/locale/fr",
      out: "app/content/fr.json"
    }
  },
  allLocales: {
    options: {
      query: "dump/zip/pages/locales",
      zipOut: "content/"
    }
  }
}

About Shampoo

Shampoo is a CMS developed by some folks at Soap Creative, hosted on http://shampoo.io. It is currently in active development.

Contributing

If you are a user of Shampoo and use this plugin, please contribute and help keep the plugin up to date with the API.

Release History

About

Retrieve content from the Shampoo CMS API on shampoo.io.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published