forked from keystonejs/keystone-classic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
216 lines (178 loc) · 7.48 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
var _ = require('lodash');
var express = require('express');
var grappling = require('grappling-hook');
var path = require('path');
var utils = require('keystone-utils');
var importer = require('./lib/core/importer');
/**
* Don't use process.cwd() as it breaks module encapsulation
* Instead, let's use module.parent if it's present, or the module itself if there is no parent (probably testing keystone directly if that's the case)
* This way, the consuming app/module can be an embedded node_module and path resolutions will still work
* (process.cwd() breaks module encapsulation if the consuming app/module is itself a node_module)
*/
var moduleRoot = (function (_rootPath) {
var parts = _rootPath.split(path.sep);
parts.pop(); // get rid of /node_modules from the end of the path
return parts.join(path.sep);
})(module.parent ? module.parent.paths[0] : module.paths[0]);
/**
* Keystone Class
*/
var Keystone = function () {
grappling.mixin(this).allowHooks('pre:static', 'pre:bodyparser', 'pre:session', 'pre:logger', 'pre:admin', 'pre:routes', 'pre:render', 'updates', 'signin', 'signout');
this.lists = {};
this.fieldTypes = {};
this.paths = {};
this._options = {
'name': 'Keystone',
'brand': 'Keystone',
'admin path': 'keystone',
'compress': true,
'headless': false,
'logger': ':method :url :status :response-time ms',
'auto update': false,
'model prefix': null,
'module root': moduleRoot,
'frame guard': 'sameorigin',
'cache admin bundles': true,
};
this._redirects = {};
// expose express
this.express = express;
// init environment defaults
this.set('env', process.env.NODE_ENV || 'development');
this.set('port', process.env.PORT || process.env.OPENSHIFT_NODEJS_PORT || '3000');
this.set('host', process.env.HOST || process.env.IP || process.env.OPENSHIFT_NODEJS_IP || '0.0.0.0');
this.set('listen', process.env.LISTEN);
this.set('ssl', process.env.SSL);
this.set('ssl port', process.env.SSL_PORT || '3001');
this.set('ssl host', process.env.SSL_HOST || process.env.SSL_IP);
this.set('ssl key', process.env.SSL_KEY);
this.set('ssl cert', process.env.SSL_CERT);
this.set('cookie secret', process.env.COOKIE_SECRET);
this.set('cookie signin', (this.get('env') === 'development') ? true : false);
this.set('embedly api key', process.env.EMBEDLY_API_KEY || process.env.EMBEDLY_APIKEY);
this.set('mandrill api key', process.env.MANDRILL_API_KEY || process.env.MANDRILL_APIKEY);
this.set('mandrill username', process.env.MANDRILL_USERNAME);
this.set('google api key', process.env.GOOGLE_BROWSER_KEY);
this.set('google server api key', process.env.GOOGLE_SERVER_KEY);
this.set('ga property', process.env.GA_PROPERTY);
this.set('ga domain', process.env.GA_DOMAIN);
this.set('chartbeat property', process.env.CHARTBEAT_PROPERTY);
this.set('chartbeat domain', process.env.CHARTBEAT_DOMAIN);
this.set('allowed ip ranges', process.env.ALLOWED_IP_RANGES);
if (process.env.S3_BUCKET && process.env.S3_KEY && process.env.S3_SECRET) {
this.set('s3 config', { bucket: process.env.S3_BUCKET, key: process.env.S3_KEY, secret: process.env.S3_SECRET, region: process.env.S3_REGION });
}
if (process.env.AZURE_STORAGE_ACCOUNT && process.env.AZURE_STORAGE_ACCESS_KEY) {
this.set('azurefile config', { account: process.env.AZURE_STORAGE_ACCOUNT, key: process.env.AZURE_STORAGE_ACCESS_KEY });
}
if (process.env.CLOUDINARY_URL) {
// process.env.CLOUDINARY_URL is processed by the cloudinary package when this is set
this.set('cloudinary config', true);
}
// init mongoose
this.set('mongoose', require('mongoose'));
this.mongoose.Promise = require('es6-promise').Promise;
// Attach middleware packages, bound to this instance
this.middleware = {
api: require('./lib/middleware/api')(this),
cors: require('./lib/middleware/cors')(this),
};
};
_.extend(Keystone.prototype, require('./lib/core/options'));
Keystone.prototype.prefixModel = function (key) {
var modelPrefix = this.get('model prefix');
if (modelPrefix) {
key = modelPrefix + '_' + key;
}
return require('mongoose/lib/utils').toCollectionName(key);
};
/* Attach core functionality to Keystone.prototype */
Keystone.prototype.createItems = require('./lib/core/createItems');
Keystone.prototype.createRouter = require('./lib/core/createRouter');
Keystone.prototype.getOrphanedLists = require('./lib/core/getOrphanedLists');
Keystone.prototype.importer = importer;
Keystone.prototype.init = require('./lib/core/init');
Keystone.prototype.initDatabaseConfig = require('./lib/core/initDatabaseConfig');
Keystone.prototype.initExpressApp = require('./lib/core/initExpressApp');
Keystone.prototype.initExpressSession = require('./lib/core/initExpressSession');
Keystone.prototype.initNav = require('./lib/core/initNav');
Keystone.prototype.list = require('./lib/core/list');
Keystone.prototype.openDatabaseConnection = require('./lib/core/openDatabaseConnection');
Keystone.prototype.closeDatabaseConnection = require('./lib/core/closeDatabaseConnection');
Keystone.prototype.populateRelated = require('./lib/core/populateRelated');
Keystone.prototype.redirect = require('./lib/core/redirect');
Keystone.prototype.start = require('./lib/core/start');
Keystone.prototype.wrapHTMLError = require('./lib/core/wrapHTMLError');
Keystone.prototype.createKeystoneHash = require('./lib/core/createKeystoneHash');
/* Deprecation / Change warnings for 0.4 */
Keystone.prototype.routes = function () {
throw new Error('keystone.routes(fn) has been removed, use keystone.set(\'routes\', fn)');
};
/**
* The exports object is an instance of Keystone.
*/
var keystone = module.exports = new Keystone();
/*
Note: until #1777 is complete, the order of execution here with the requires
(specifically, they happen _after_ the module.exports above) is really
important. As soon as the circular dependencies are sorted out to get their
keystone instance from a closure or reference on {this} we can move these
bindings into the Keystone constructor.
*/
// Expose modules and Classes
keystone.Admin = {
Server: require('./admin/server'),
};
keystone.Email = require('./lib/email');
keystone.Field = require('./fields/types/Type');
keystone.Field.Types = require('./lib/fieldTypes');
keystone.Keystone = Keystone;
keystone.List = require('./lib/list')(keystone);
keystone.Storage = require('./lib/storage');
keystone.View = require('./lib/view');
keystone.content = require('./lib/content');
keystone.security = {
csrf: require('./lib/security/csrf'),
};
keystone.utils = utils;
/**
* returns all .js modules (recursively) in the path specified, relative
* to the module root (where the keystone project is being consumed from).
*
* ####Example:
* var models = keystone.import('models');
*/
Keystone.prototype.import = function (dirname) {
return importer(this.get('module root'))(dirname);
};
/**
* Applies Application updates
*/
Keystone.prototype.applyUpdates = function (callback) {
var self = this;
self.callHook('pre:updates', function (err) {
if (err) return callback(err);
require('./lib/updates').apply(function (err) {
if (err) return callback(err);
self.callHook('post:updates', callback);
});
});
};
/**
* Logs a configuration error to the console
*/
Keystone.prototype.console = {};
Keystone.prototype.console.err = function (type, msg) {
if (keystone.get('logger')) {
var dashes = '\n------------------------------------------------\n';
console.log(dashes + 'KeystoneJS: ' + type + ':\n\n' + msg + dashes);
}
};
/**
* Keystone version
*/
keystone.version = require('./package.json').version;
// Expose Modules
keystone.session = require('./lib/session');