2013-10-11 20:44:10 +00:00
|
|
|
var loopback = require('../loopback');
|
2013-07-18 18:44:25 +00:00
|
|
|
var assert = require('assert');
|
|
|
|
|
2013-07-09 22:06:42 +00:00
|
|
|
// Authentication schemes
|
2013-07-12 20:09:22 +00:00
|
|
|
var AuthenticationSchemeSchema = {
|
2013-12-18 19:49:09 +00:00
|
|
|
scheme: String, // local, facebook, google, twitter, linkedin, github
|
|
|
|
credential: Object // Scheme-specific credentials
|
2013-10-11 20:44:10 +00:00
|
|
|
};
|
2013-07-09 22:06:42 +00:00
|
|
|
|
2013-12-18 18:58:34 +00:00
|
|
|
// See https://github.com/argon/node-apn/blob/master/doc/apn.markdown
|
2013-07-12 20:09:22 +00:00
|
|
|
var APNSSettingSchema = {
|
2013-12-18 20:28:48 +00:00
|
|
|
/**
|
|
|
|
* production or development mode. It denotes what default APNS servers to be
|
|
|
|
* used to send notifications
|
|
|
|
* - true (production mode)
|
|
|
|
* - push: gateway.push.apple.com:2195
|
|
|
|
* - feedback: feedback.push.apple.com:2196
|
|
|
|
* - false (development mode, the default)
|
|
|
|
* - push: gateway.sandbox.push.apple.com:2195
|
|
|
|
* - feedback: feedback.sandbox.push.apple.com:2196
|
|
|
|
*/
|
|
|
|
production: Boolean,
|
|
|
|
certData: String, // The certificate data loaded from the cert.pem file
|
|
|
|
keyData: String, // The key data loaded from the key.pem file
|
2013-12-18 19:49:09 +00:00
|
|
|
|
|
|
|
pushOptions: {type: {
|
2013-12-18 20:28:48 +00:00
|
|
|
gateway: String,
|
|
|
|
port: Number
|
2013-12-18 19:49:09 +00:00
|
|
|
}},
|
|
|
|
|
|
|
|
feedbackOptions: {type: {
|
2013-12-18 20:28:48 +00:00
|
|
|
gateway: String,
|
|
|
|
port: Number,
|
2013-12-18 19:49:09 +00:00
|
|
|
batchFeedback: Boolean,
|
|
|
|
interval: Number
|
|
|
|
}}
|
2013-07-12 20:09:22 +00:00
|
|
|
};
|
|
|
|
|
2013-12-17 17:44:13 +00:00
|
|
|
var GcmSettingsSchema = {
|
2013-12-18 19:49:09 +00:00
|
|
|
serverApiKey: String
|
2013-12-18 18:58:34 +00:00
|
|
|
};
|
2013-12-17 17:44:13 +00:00
|
|
|
|
2013-07-09 22:06:42 +00:00
|
|
|
// Push notification settings
|
2013-07-12 20:09:22 +00:00
|
|
|
var PushNotificationSettingSchema = {
|
2013-12-18 19:49:09 +00:00
|
|
|
apns: APNSSettingSchema,
|
|
|
|
gcm: GcmSettingsSchema
|
2013-10-11 20:44:10 +00:00
|
|
|
};
|
2013-07-09 22:06:42 +00:00
|
|
|
|
2013-07-08 23:59:11 +00:00
|
|
|
/**
|
|
|
|
* Data model for Application
|
|
|
|
*/
|
2013-06-26 23:25:51 +00:00
|
|
|
var ApplicationSchema = {
|
2013-12-18 19:49:09 +00:00
|
|
|
id: {type: String, id: true, generated: true},
|
|
|
|
// Basic information
|
|
|
|
name: {type: String, required: true}, // The name
|
|
|
|
description: String, // The description
|
|
|
|
icon: String, // The icon image url
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
// EMail
|
|
|
|
email: String, // e-mail address
|
|
|
|
emailVerified: Boolean, // Is the e-mail verified
|
|
|
|
|
|
|
|
// 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,
|
|
|
|
javaScriptKey: String,
|
|
|
|
restApiKey: String,
|
|
|
|
windowsKey: String,
|
|
|
|
masterKey: String,
|
|
|
|
|
|
|
|
// Push notification
|
|
|
|
pushSettings: PushNotificationSettingSchema,
|
|
|
|
|
|
|
|
// User Authentication
|
|
|
|
authenticationEnabled: {type: Boolean, default: true},
|
|
|
|
anonymousAllowed: {type: Boolean, default: true},
|
|
|
|
authenticationSchemes: [AuthenticationSchemeSchema],
|
|
|
|
|
|
|
|
status: {type: String, default: 'sandbox'}, // Status of the application, production/sandbox/disabled
|
|
|
|
|
|
|
|
// Timestamps
|
|
|
|
created: {type: Date, default: Date},
|
|
|
|
modified: {type: Date, default: Date}
|
2013-06-26 23:25:51 +00:00
|
|
|
};
|
2013-07-08 23:59:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Application management functions
|
|
|
|
*/
|
|
|
|
|
2013-07-09 22:06:42 +00:00
|
|
|
var crypto = require('crypto');
|
|
|
|
|
2013-07-18 18:44:25 +00:00
|
|
|
function generateKey(hmacKey, algorithm, encoding) {
|
2013-12-18 19:49:09 +00:00
|
|
|
hmacKey = hmacKey || 'loopback';
|
|
|
|
algorithm = algorithm || 'sha256';
|
|
|
|
encoding = encoding || 'base64';
|
|
|
|
var hmac = crypto.createHmac(algorithm, hmacKey);
|
|
|
|
var buf = crypto.randomBytes(64);
|
|
|
|
hmac.update(buf);
|
|
|
|
return hmac.digest('base64');
|
2013-07-09 22:06:42 +00:00
|
|
|
}
|
|
|
|
|
2013-10-11 20:44:10 +00:00
|
|
|
var Application = loopback.createModel('Application', ApplicationSchema);
|
|
|
|
|
2013-10-23 20:25:50 +00:00
|
|
|
/*!
|
|
|
|
* A hook to generate keys before creation
|
|
|
|
* @param next
|
|
|
|
*/
|
2013-10-11 20:44:10 +00:00
|
|
|
Application.beforeCreate = function (next) {
|
2013-12-18 19:49:09 +00:00
|
|
|
var app = this;
|
|
|
|
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');
|
|
|
|
next();
|
2013-10-11 20:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a new application
|
|
|
|
* @param owner Owner's user id
|
|
|
|
* @param name Name of the application
|
|
|
|
* @param options Other options
|
|
|
|
* @param cb Callback function
|
|
|
|
*/
|
|
|
|
Application.register = function (owner, name, options, cb) {
|
2013-12-18 19:49:09 +00:00
|
|
|
assert(owner, 'owner is required');
|
|
|
|
assert(name, 'name is required');
|
|
|
|
|
|
|
|
if (typeof options === 'function' && !cb) {
|
|
|
|
cb = options;
|
|
|
|
options = {};
|
|
|
|
}
|
|
|
|
var props = {owner: owner, name: name};
|
|
|
|
for (var p in options) {
|
|
|
|
if (!(p in props)) {
|
|
|
|
props[p] = options[p];
|
2013-07-12 20:09:22 +00:00
|
|
|
}
|
2013-12-18 19:49:09 +00:00
|
|
|
}
|
|
|
|
Application.create(props, cb);
|
2013-10-11 20:44:10 +00:00
|
|
|
};
|
2013-07-12 20:09:22 +00:00
|
|
|
|
2013-10-11 20:44:10 +00:00
|
|
|
/**
|
|
|
|
* Reset keys for the application instance
|
|
|
|
* @param cb
|
|
|
|
*/
|
2013-12-18 19:49:09 +00:00
|
|
|
Application.prototype.resetKeys = function (cb) {
|
|
|
|
this.clientKey = generateKey('client');
|
|
|
|
this.javaScriptKey = generateKey('javaScript');
|
|
|
|
this.restApiKey = generateKey('restApi');
|
|
|
|
this.windowsKey = generateKey('windows');
|
|
|
|
this.masterKey = generateKey('master');
|
|
|
|
this.modified = new Date();
|
|
|
|
this.save(cb);
|
2013-10-11 20:44:10 +00:00
|
|
|
};
|
2013-07-09 22:06:42 +00:00
|
|
|
|
2013-10-11 20:44:10 +00:00
|
|
|
/**
|
|
|
|
* Reset keys for a given application by the appId
|
|
|
|
* @param appId
|
|
|
|
* @param cb
|
|
|
|
*/
|
2013-12-18 19:49:09 +00:00
|
|
|
Application.resetKeys = function (appId, cb) {
|
|
|
|
Application.findById(appId, function (err, app) {
|
|
|
|
if (err) {
|
|
|
|
cb && cb(err, app);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
app.resetKeys(cb);
|
|
|
|
});
|
2013-10-11 20:44:10 +00:00
|
|
|
};
|
2013-07-18 18:44:25 +00:00
|
|
|
|
2013-10-11 20:44:10 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param appId
|
|
|
|
* @param key
|
|
|
|
* @param cb
|
|
|
|
*/
|
2013-12-18 19:49:09 +00:00
|
|
|
Application.authenticate = function (appId, key, cb) {
|
|
|
|
Application.findById(appId, function (err, app) {
|
|
|
|
if (err || !app) {
|
|
|
|
cb && cb(err, null);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var matched = null;
|
|
|
|
['clientKey', 'javaScriptKey', 'restApiKey', 'windowsKey', 'masterKey'].forEach(function (k) {
|
|
|
|
if (app[k] === key) {
|
|
|
|
matched = k;
|
|
|
|
}
|
2013-10-11 20:44:10 +00:00
|
|
|
});
|
2013-12-18 19:49:09 +00:00
|
|
|
cb && cb(null, matched);
|
|
|
|
});
|
2013-10-11 20:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Application;
|
2013-07-22 18:15:02 +00:00
|
|
|
|
2013-07-09 22:06:42 +00:00
|
|
|
|
2013-07-08 23:59:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|