Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding ability to test deploy process / upload process via dry run arg #45

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,26 @@ Setup your aws.json file
{
"key": "AKIAI3Z7CUAFHG53DMJA",
"secret": "acYxWRu5RRa6CwzQuhdXEfTpbQA+1XQJ7Z1bGTCx",
"bucket": "dev.example.com",
"region": "eu-west-1"
"bucket": "dev.example.com"
}
```

Then, use it in your `gulpfile.js`:
```javascript
var s3 = require("gulp-s3");

aws = JSON.parse(fs.readFileSync('./aws.json'));
aws = require('./aws.json');
gulp.src('./dist/**')
.pipe(s3(aws));
```

## Testing
To test your paths before uploading add the 'dry' flag to your gulp command.

```
gulp deploy --dry
```

## API


Expand Down Expand Up @@ -59,9 +65,8 @@ var gzip = require("gulp-gzip");
var options = { gzippedOnly: true };

gulp.src('./dist/**')
.pipe(gzip())
.pipe(s3(aws, options));

.pipe(gzip())
.pipe(s3(aws, options));
});
```

Expand Down
25 changes: 16 additions & 9 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ var es = require('event-stream');
var knox = require('knox');
var gutil = require('gulp-util');
var mime = require('mime');
var yargs = require('yargs').argv;
mime.default_type = 'text/plain';

module.exports = function (aws, options) {
options = options || {};

if (!options.delay) { options.delay = 0; }

var client = knox.createClient(aws);
var waitTime = 0;
var dry = (yargs.dry) ? true : false;
var regexGzip = /\.([a-z]{2,})\.gz$/i;
var regexGeneral = /\.([a-z]{2,})$/i;

Expand Down Expand Up @@ -49,13 +49,20 @@ module.exports = function (aws, options) {

headers['Content-Length'] = file.stat.size;

client.putBuffer(file.contents, uploadPath, headers, function(err, res) {
if (err || res.statusCode !== 200) {
gutil.log(gutil.colors.red('[FAILED]', file.path + " -> " + uploadPath));
} else {
gutil.log(gutil.colors.green('[SUCCESS]', file.path + " -> " + uploadPath));
res.resume();
}
if (dry) {
gutil.log(gutil.colors.yellow('[DRY RUN]', file.path + ' -> ' + uploadPath));
return file;
}

knox
.createClient(aws)
.putBuffer(file.contents, uploadPath, headers, function(err, res) {
if (err || res.statusCode !== 200) {
gutil.log(gutil.colors.red('[FAILED]', file.path + ' -> ' + uploadPath));
} else {
gutil.log(gutil.colors.green('[SUCCESS]', file.path + ' -> ' + uploadPath));
res.resume();
}
});

return file;
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"event-stream": "*",
"gulp-util": "~2.2.6",
"knox": "",
"mime": "~1.2.11"
"mime": "~1.2.11",
"yargs": "^3.6.0"
},
"devDependencies": {
"mocha": "~1.14.0",
Expand Down