Skip to content

Commit

Permalink
Merge pull request #43 from mjzone/v1
Browse files Browse the repository at this point in the history
Fixing command line parameter definitions and dynamodb local start bugs.
  • Loading branch information
AshanFernando authored Aug 18, 2016
2 parents 002f96e + 421157a commit f4f4c42
Showing 1 changed file with 159 additions and 159 deletions.
318 changes: 159 additions & 159 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,183 +6,183 @@ const _ = require('lodash'),
AWS = require('aws-sdk'),
dynamodbLocal = require('dynamodb-localhost');

class DynamodbLocal {
class ServerlessDynamodbLocal {
constructor(serverless, options) {
this.serverless = serverless;
this.service = serverless.service;
this.options = options;
this.provider = 'aws';
this.commands = {
dynamodb: {
commands: {
create: {
lifecycleEvents: ['createHandler'],
options: {
name: {
required: true,
shortcut: 'n',
usage: 'Create a migration template inside the directlry given in s-project.json with the given name.',
}
dynamodb: {
commands: {
create: {
lifecycleEvents: ['createHandler'],
options: {
name: {
required: true,
shortcut: 'n',
usage: 'Create a migration template inside the directlry given in s-project.json with the given name.',
}
},
execute: {
lifecycleEvents: ['executeHandler'],
options: {
name: {
required: true,
shortcut: 'n'
usage: 'Execute a migration template with the given name'
},
region: {
required: true,
shortcut: 'r'
usage: 'Region that dynamodb should be remotely executed'
},
stage: {
required: true,
shortcut: 's'
usage: 'Stage that dynamodb should be remotely executed'
}
}
},
execute: {
lifecycleEvents: ['executeHandler'],
options: {
name: {
required: true,
shortcut: 'n',
usage: 'Execute a migration template with the given name'
},
region: {
required: true,
shortcut: 'r',
usage: 'Region that dynamodb should be remotely executed'
},
stage: {
required: true,
shortcut: 's',
usage: 'Stage that dynamodb should be remotely executed'
}
},
executeAll: {
lifecycleEvents: ['executeAllHandler'],
options: {
region: {
required: true,
shortcut: 'r',
usage: 'Region that dynamodb should be remotely executed'
},
stage: {
required: true,
shortcut: 's',
usage: 'Stage that dynamodb should be remotely executed'
}
}
},
executeAll: {
lifecycleEvents: ['executeAllHandler'],
options: {
region: {
required: true,
shortcut: 'r',
usage: 'Region that dynamodb should be remotely executed'
},
stage: {
required: true,
shortcut: 's',
usage: 'Stage that dynamodb should be remotely executed'
}
},
start: {
lifecycleEvents: ['startHandler'],
options: {
port: {
required: true,
shortcut: 'p',
usage: 'The port number that DynamoDB will use to communicate with your application. If you do not specify this option, the default port is 8000'
},
cors: {
shortcut: 'c',
usage: 'Enable CORS support (cross-origin resource sharing) for JavaScript. You must provide a comma-separated "allow" list of specific domains. The default setting for -cors is an asterisk (*), which allows public access.'
},
inMemory: {
shortcut: 'i',
usage: 'DynamoDB; will run in memory, instead of using a database file. When you stop DynamoDB;, none of the data will be saved. Note that you cannot specify both -dbPath and -inMemory at once.'
},
dbPath: {
shortcut: 'd',
usage: 'The directory where DynamoDB will write its database file. If you do not specify this option, the file will be written to the current directory. Note that you cannot specify both -dbPath and -inMemory at once. For the path, current working directory is <projectroot>/node_modules/serverless-dynamodb-local/dynamob. For example to create <projectroot>/node_modules/serverless-dynamodb-local/dynamob/<mypath> you should specify -d <mypath>/ or --dbPath <mypath>/ with a forwardslash at the end.'
},
sharedDb: {
shortcut: 'h',
usage: 'DynamoDB will use a single database file, instead of using separate files for each credential and region. If you specify -sharedDb, all DynamoDB clients will interact with the same set of tables regardless of their region and credential configuration.'
},
delayTransientStatuses: {
shortcut: 't',
usage: 'Causes DynamoDB to introduce delays for certain operations. DynamoDB can perform some tasks almost instantaneously, such as create/update/delete operations on tables and indexes; however, the actual DynamoDB service requires more time for these tasks. Setting this parameter helps DynamoDB simulate the behavior of the Amazon DynamoDB web service more closely. (Currently, this parameter introduces delays only for global secondary indexes that are in either CREATING or DELETING status.'
},
optimizeDbBeforeStartup: {
shortcut: 'o',
usage: 'Optimizes the underlying database tables before starting up DynamoDB on your computer. You must also specify -dbPath when you use this parameter.'
},
migration: {
shortcut: 'm',
usage: 'After starting dynamodb local, run dynamodb migrations'
}
}
},
start: {
lifecycleEvents: ['startHandler'],
options: {
port: {
shortcut: 'p',
usage: 'The port number that DynamoDB will use to communicate with your application. If you do not specify this option, the default port is 8000'
},
cors: {
shortcut: 'c',
usage: 'Enable CORS support (cross-origin resource sharing) for JavaScript. You must provide a comma-separated "allow" list of specific domains. The default setting for -cors is an asterisk (*), which allows public access.'
},
inMemory: {
shortcut: 'i',
usage: 'DynamoDB; will run in memory, instead of using a database file. When you stop DynamoDB;, none of the data will be saved. Note that you cannot specify both -dbPath and -inMemory at once.'
},
dbPath: {
shortcut: 'd',
usage: 'The directory where DynamoDB will write its database file. If you do not specify this option, the file will be written to the current directory. Note that you cannot specify both -dbPath and -inMemory at once. For the path, current working directory is <projectroot>/node_modules/serverless-dynamodb-local/dynamob. For example to create <projectroot>/node_modules/serverless-dynamodb-local/dynamob/<mypath> you should specify -d <mypath>/ or --dbPath <mypath>/ with a forwardslash at the end.'
},
sharedDb: {
shortcut: 'h',
usage: 'DynamoDB will use a single database file, instead of using separate files for each credential and region. If you specify -sharedDb, all DynamoDB clients will interact with the same set of tables regardless of their region and credential configuration.'
},
delayTransientStatuses: {
shortcut: 't',
usage: 'Causes DynamoDB to introduce delays for certain operations. DynamoDB can perform some tasks almost instantaneously, such as create/update/delete operations on tables and indexes; however, the actual DynamoDB service requires more time for these tasks. Setting this parameter helps DynamoDB simulate the behavior of the Amazon DynamoDB web service more closely. (Currently, this parameter introduces delays only for global secondary indexes that are in either CREATING or DELETING status.'
},
optimizeDbBeforeStartup: {
shortcut: 'o',
usage: 'Optimizes the underlying database tables before starting up DynamoDB on your computer. You must also specify -dbPath when you use this parameter.'
},
migration: {
shortcut: 'm',
usage: 'After starting dynamodb local, run dynamodb migrations'
}
},
remove: {
lifecycleEvents: ['removeHandler']
},
install: {
lifecycleEvents: ['installHandler']
}
},
remove: {
lifecycleEvents: ['removeHandler']
},
install: {
lifecycleEvents: ['installHandler']
}
}
},
this.hooks = {
'dynamodb:create:createHandler': this.createHandler,
'dynamodb:execute:executeHandler': this.executeHandler,
'dynamodb:executeAll:executeAllHandler': this.executeAllHandler,
'dynamodb:remove:removeHandler': this.removeHandler,
'dynamodb:install:installHandler': this.installHandler,
'dynamodb:start:startHandler': this.startHandler,
}
};

createHandler() {
let self = this,
options = this.options;
return new BbPromise(function(resolve, reject) {
let dynamodb = self.dynamodbOptions(),
tableOptions = self.tableOptions();
dynamodbMigrations.init(dynamodb, tableOptions.path);
dynamodbMigrations.create(options.name).then(resolve, reject);
});
}
this.hooks = {
'dynamodb:create:createHandler': this.createHandler.bind(this),
'dynamodb:execute:executeHandler': this.executeHandler.bind(this),
'dynamodb:executeAll:executeAllHandler': this.executeAllHandler.bind(this),
'dynamodb:remove:removeHandler': this.removeHandler.bind(this),
'dynamodb:install:installHandler': this.installHandler.bind(this),
'dynamodb:start:startHandler': this.startHandler.bind(this),
};
}
createHandler() {
let self = this,
options = this.options;
return new BbPromise(function(resolve, reject) {
let dynamodb = self.dynamodbOptions(),
tableOptions = self.tableOptions();
dynamodbMigrations.init(dynamodb, tableOptions.path);
dynamodbMigrations.create(options.name).then(resolve, reject);
});
}

executeHandler() {
let self = this,
options = this.options;
return new BbPromise(function(resolve, reject) {
let dynamodb = self.dynamodbOptions(options.stage, options.region),
tableOptions = self.tableOptions();
dynamodbMigrations.init(dynamodb, tableOptions.path);
dynamodbMigrations.execute(options.name, tableOptions).then(resolve, reject);
});
}
executeHandler() {
let self = this,
options = this.options;
return new BbPromise(function(resolve, reject) {
let dynamodb = self.dynamodbOptions(options.stage, options.region),
tableOptions = self.tableOptions();
dynamodbMigrations.init(dynamodb, tableOptions.path);
dynamodbMigrations.execute(options.name, tableOptions).then(resolve, reject);
});
}

executeAllHandler() {
let self = this,
options = this.options;
return new BbPromise(function(resolve, reject) {
let dynamodb = self.dynamodbOptions(options.stage, options.region),
tableOptions = self.tableOptions();
dynamodbMigrations.init(dynamodb, tableOptions.path);
dynamodbMigrations.executeAll(tableOptions).then(resolve, reject);
});
}
executeAllHandler() {
let self = this,
options = this.options;
return new BbPromise(function(resolve, reject) {
let dynamodb = self.dynamodbOptions(options.stage, options.region),
tableOptions = self.tableOptions();
dynamodbMigrations.init(dynamodb, tableOptions.path);
dynamodbMigrations.executeAll(tableOptions).then(resolve, reject);
});
}

removeHandler() {
return new BbPromise(function(resolve) {
dynamodbLocal.remove(resolve);
});
}
removeHandler() {
return new BbPromise(function(resolve) {
dynamodbLocal.remove(resolve);
});
}

installHandler() {
return new BbPromise(function(resolve) {
dynamodbLocal.install(resolve);
});
}
installHandler() {
return new BbPromise(function(resolve) {
dynamodbLocal.install(resolve);
});
}

startHandler() {
let self = this;
return new BbPromise(function(resolve) {
let config = this.serverless.service.custom.dynamodb,
options = _.merge({
sharedDb: this.options.sharedDb || true
},
this.options,
config && config.start
);
if (options.migration) {
dynamodbLocal.start(options);
console.log(""); // seperator
self.executeAll();
resolve();
} else {
dynamodbLocal.start(options);
console.log("");
resolve();
}
});
}
startHandler() {
let self = this,
options = this.options;
return new BbPromise(function(resolve) {
let config = self.service.custom.dynamodb,
options = _.merge({
sharedDb: self.options.sharedDb || true
},
self.options,
config && config.start
);
if (options.migration) {
dynamodbLocal.start(options);
console.log(""); // seperator
self.executeAll();
resolve();
} else {
dynamodbLocal.start(options);
console.log("");
resolve();
}
});
}
}
}
module.exports = DynamodbLocal;
module.exports = ServerlessDynamodbLocal;

0 comments on commit f4f4c42

Please sign in to comment.