This is a router abstraction for gulp-awspublish, allowing you to define options like caching, key manipulation and such on a per-file basis. The routes are specified similarly to Apache, where the route rules are RegExps processed one by one and when a match is found, the "redirect" is specified using RegExp backreferences.
You can install gulp-awspublish-router via npm:
$ npm install --save-dev gulp-awspublish-router
Include the plugin:
var awspublishRouter = require("gulp-awspublish-router");
This is a function that takes an options object as its argument, and the options are as follows:
routes
A key-value pair of the routes and their options.cache
(optional) Override values for default cache options:cacheTime
(defaults tonull
) a value in seconds to use for cache headers. Ifnull
, no cache headers are applied.public
(defaults totrue
) a boolean value on whether to include thepublic
directive in theCache-Control
header. If false,private
directive is used instead.allowTransform
(defaults tofalse
) a boolean value on whether to allow transforms of the cached content. Iffalse
, theno-transform
directive is applied to theCache-Control
header.useExpires
(defaults tofalse
) if specified, applies theExpires
header as well. Use with caution as the cache will expire after thecacheTime
has passed of the publish time.
var awspublish = require("gulp-awspublish");
var awspublishRouter = require("gulp-awspublish-router");
gulp.task("publish", function () {
var publisher = awspublish.create({ key: '...', secret: '...', bucket: '...' });
gulp.src("**/*", { cwd: "./public/" })
.pipe(awspublishRouter({
cache: {
// cache for 5 minutes by default
cacheTime: 300
},
routes: {
"^assets/(?:.+)\\.(?:js|css|svg|ttf)$": {
// don't modify original key. this is the default
key: "$&",
// use gzip for assets that benefit from it
gzip: true,
// cache static assets for 20 years
cacheTime: 630720000
},
"^assets/.+$": {
// cache static assets for 20 years
cacheTime: 630720000
},
// e.g. upload items/foo/bar/index.html under key items/foo/bar
"^items/([^/]+)/([^/]+)/index\\.html": "items/$1/$2",
"^.+\\.html": {
// apply gzip with extra options
gzip: {
// Add .gz extension.
ext: ".gz"
}
},
"^README$": {
// specify extra headers
headers: {
"Content-Type": "text/plain"
}
},
// pass-through for anything that wasn't matched by routes above, to be uploaded with default options
"^.+$": "$&"
}
}))
.pipe(publisher.publish())
.pipe(publisher.sync())
.pipe(awspublish.reporter())
});
Contributions are most welcome! If you're having problems and don't know why, search the issues to see if someone's had the same issue. If not, file a new issue so we can solve it together and leave the solution visible to others facing the same problem as well. If you find bugs, file an issue, preferably with good reproduction steps. If you want to be totally awesome, you can make a PR to go with your issue, containing a new test case that fails currently!
Development is pretty straightforward, it's all JS and the standard node stuff works:
To install dependencies:
$ npm install
To run the tests:
$ npm test
Then just make your awesome feature and a PR for it. Don't forget to file an issue first, or start with an empty PR so others can see what you're doing and discuss it so there's a a minimal amount of wasted effort.
Do note that the test coverage is currently a whopping 100%. Let's keep it that way! Remember: if it's not in the requirements specification (i.e. the tests), it's not needed, and thus unnecessary bloat.