Add exports to models

This commit is contained in:
Raymond Feng 2013-07-09 15:06:42 -07:00
parent b4391e6b26
commit 83ca45e07e
6 changed files with 117 additions and 31 deletions

View File

@ -39,7 +39,13 @@ var ACLSchema = {
permission: {type: String, enum: ['Allow', 'Deny']}, // Allow/Deny
status: String, // Enabled/disabled
created: Date,
lastUpdated: Date
modified: Date
}
// readAccess, writeAccess --> public, userId, role
// readAccess, writeAccess --> public, userId, role
module.exports = function(dataSource) {
dataSource = dataSource || new require('jugglingdb').ModelBuilder();
var ACL = dataSource.define('ACL', ACLSchema);
return ACL;
}

View File

@ -1,17 +1,26 @@
// Authentication schemes
var AuthenticationScheme = {
scheme: String, // local, facebook, google, twitter, linkedin, github
credential: Object // Scheme-specific credentials
}
// Push notification settings
var PushNotificationSetting = {
platform: {type: String, required: true}, // apns, gcm, mpns
configuration: Object // platform-specific configurations
}
/**
* Data model for Application
*/
var ApplicationSchema = {
// Basic information
id: {type: String, required: true},
name: {type: String, required: true},
description: String, // description
id: {type: String, required: true}, // The id
name: {type: String, required: true}, // The name
description: String, // The description
icon: String, // The icon image url
public: Boolean, // Do we list the application in the public catalog?
permissions: [String],
owner: String, // The user id of the developer who registers the application
collaborators: [String], // A list of users ids who have permissions to work on this app
@ -19,8 +28,10 @@ var ApplicationSchema = {
email: String, // e-mail address
emailVerified: Boolean, // Is the e-mail verified
status: String, // Status of the application, enabled/disabled
// oAuth 2.0 settings
url: String, // The application url
callbackUrls: [String], // oAuth 2.0 code/token callback url
permissions: [String], // A list of permissions required by the application
// Keys
clientKey: String,
@ -30,18 +41,18 @@ var ApplicationSchema = {
masterKey: String,
// Push notification
pushPlatforms: [String],
pushCredentials: [],
pushSettings: [PushNotificationSetting],
// User Authentication
authenticationEnabled: Boolean,
anonymousAllowed: Boolean,
schemes: [String], // Basic, facebook, github, google
attachedCredentials: [],
authenticationEnabled: {type: Boolean, default: true},
anonymousAllowed: {type: Boolean, default: true},
authenticationSchemes: [AuthenticationScheme],
status: {type: String, default: 'sandbox'}, // Status of the application, production/sandbox/disabled
created: Date,
lastUpdated: Date
// Timestamps
created: {type: Date, default: Date},
modified: {type: Date, default: Date}
};
@ -49,7 +60,43 @@ var ApplicationSchema = {
* Application management functions
*/
// Register a new application
var crypto = require('crypto');
function generateKey(hmacKey, algorithm) {
hmacKey = hmacKey || 'asteroid';
algorithm = algorithm || 'sha256';
var hmac = crypto.createHmac(algorithm, hmacKey);
var buf = crypto.randomBytes(64);
hmac.update(buf);
return hmac.digest('base64');
}
module.exports = function (dataSource) {
dataSource = dataSource || new require('jugglingdb').ModelBuilder();
var Application = dataSource.define('Application', ApplicationSchema);
Application.afterInitialize = function () {
var app = this;
// use data argument to update object
app.created = app.modified = new Date();
app.id = generateKey('id', 'sha1');
app.clientKey = generateKey('client');
app.javaScriptKey = generateKey('javaScript');
app.restApiKey = generateKey('restApi');
app.windowsKey = generateKey('windows');
app.masterKey = generateKey('master');
};
// Register a new application
Application.register = function (name, description, owner) {
return new Application({name: name, description: description, owner: owner});
}
return Application;
}

16
lib/models/index.js Normal file
View File

@ -0,0 +1,16 @@
var ModelBuilder = require('jugglingdb').ModelBuilder;
var ds = new ModelBuilder();
exports.Application = require('./application')(ds);
exports.ACL = require('./acl')(ds);
exports.Role = require('./role')(ds);
exports.Installation = require('./installation')(ds);
/*
console.log(new exports.Role());
console.log(new exports.ACL());
console.log(new exports.Application());
console.log(new exports.Installation());
*/

View File

@ -5,13 +5,22 @@ var InstallationSchema = {
required: true,
id: 1
},
appId: String,
appVersion: String,
userId: String,
appId: String, // Application id
appVersion: String, // Application version
userId: String, // User id
deviceToken: String,
deviceType: String,
subscriptions: [String],
created: Date,
lastModified: Date,
status: String
status: {type: String, default: 'active'}, // Status of the application, production/sandbox/disabled
// Timestamps
created: {type: Date, default: Date},
modified: {type: Date, default: Date}
};
module.exports = function(dataSource) {
dataSource = dataSource || new require('jugglingdb').ModelBuilder();
var Installation = dataSource.define('Installation', InstallationSchema);
return Installation;
}

View File

@ -1,10 +1,18 @@
// Role model
var RoleSchema = {
id: {type: String, required: true},
id: {type: String, required: true}, // Id
name: {type: String, required: true}, // The name of a role
description: String,
description: String, // Description
roles: [String], // A role can be an aggregate of other roles
users: [String], // A role contains a list of users
created: Date,
lastUpdated: Date
users: [String], // A role contains a list of user ids
// Timestamps
created: {type: Date, default: Date},
modified: {type: Date, default: Date}
}
module.exports = function(dataSource) {
dataSource = dataSource || new require('jugglingdb').ModelBuilder();
var Role = dataSource.define('Role', RoleSchema);
return Role;
}

View File

@ -57,5 +57,5 @@ var UserSchema = {
*/
status: String,
created: Date,
lastUpdated: Date
modified: Date
}