-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
83 lines (58 loc) · 2.02 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
'use strict';
/**
* @name byteskode-push
* @description byteskode push notifications with mongoose persistence
* and kue worker support
* @return instance of mongoose model
* @see {@link https://github.com/Automattic/mongoose|mongoose}
* @see {@link https://github.com/Automattic/kue|kue}
* @see {@link https://github.com/ToothlessGear/node-gcm|node-gcm}
* @public
*/
//set environment to development by default
if (!(process.env || {}).NODE_ENV) {
process.env.NODE_ENV = 'development';
}
//suppress configuration warning
process.env.SUPPRESS_NO_CONFIG_WARNING = true;
//dependencies
var path = require('path');
var _ = require('lodash');
var config = require('config');
var path = require('path');
var mongoose = require('mongoose');
var environment = require('execution-environment');
var PushNotificationSchema = require(path.join(__dirname, 'lib', 'schema'));
var KueWorker = require(path.join(__dirname, 'lib', 'kue', 'worker'));
var PushNotification;
//configure execution-environment
if (!environment.isLocal) {
environment.registerEnvironments({
isLocal: ['test', 'dev', 'development']
});
}
//obtain push configuration from node-config
var _config = config.has('push') ? config.get('push') : {};
//obtain model name
var modelName = (_config.model || {}).name || 'PushNotification';
// initialize mongoose push notification model
try {
//setup kue queue if available
if (_config.kue && _.isPlainObject(_config.kue)) {
//require kue
var kue = require('kue');
//initialize kue job publish queue
PushNotificationSchema.statics._queue = kue.createQueue(_config.kue);
//exports kue job processing worker
PushNotificationSchema.statics.worker = KueWorker;
}
if (!mongoose.model(modelName)) {
PushNotification = mongoose.model(modelName, PushNotificationSchema);
} else {
PushNotification = mongoose.model(modelName);
}
} catch (e) {
PushNotification = mongoose.model(modelName, PushNotificationSchema);
}
//export mail model
module.exports = PushNotification;