mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-27 02:52:14 +01:00
75 lines
2.0 KiB
JavaScript
75 lines
2.0 KiB
JavaScript
var fs = require('fs')
|
|
, mailer = require('nodemailer')
|
|
|
|
try {
|
|
var credentials = require('./credentials.json')
|
|
} catch (e) {
|
|
console.log("\nNo credentials.json File!\n")
|
|
process.exit(1);
|
|
}
|
|
|
|
exports.credentials = credentials;
|
|
|
|
exports.version = require('../package.json').version;
|
|
exports.hash = 'dirty';
|
|
exports.production = process.env.NODE_ENV == "production";
|
|
exports.port = process.env.PORT || credentials.port;
|
|
exports.path = __dirname;
|
|
|
|
if (process.platform.match(/^win/) == null) {
|
|
try {
|
|
var spawn_process = require('child_process').spawn
|
|
var readHash = spawn_process('git', ['rev-parse', '--short', 'HEAD']);
|
|
readHash.stdout.on('data', function (data) {
|
|
exports.hash = data.toString().trim();
|
|
require('./app').app.locals.versionHash = exports.hash;
|
|
})
|
|
} catch (e) {
|
|
console.log("\n~= Unable to obtain git commit hash =~\n")
|
|
}
|
|
}
|
|
|
|
exports.configure = function (app) {
|
|
app.locals.pretty = exports.production // Pretty HTML outside production mode
|
|
app.locals.version = exports.version;
|
|
app.locals.versionHash = exports.hash;
|
|
app.locals.production = exports.production;
|
|
app.locals.use_analytics = credentials.use_analytics;
|
|
}
|
|
|
|
// Create SMTP transport method
|
|
exports.transport_enabled = credentials.smtp.user.length > 0;
|
|
exports.transport = null;
|
|
|
|
if (exports.transport_enabled) {
|
|
var smtp = require('nodemailer-smtp-transport');
|
|
|
|
exports.transport = mailer.createTransport(smtp({
|
|
service: "Mandrill",
|
|
auth: credentials.smtp,
|
|
port: 2525 // should bypass any port restrictions
|
|
}));
|
|
}
|
|
|
|
exports.init = function () {
|
|
var models = require('./models');
|
|
|
|
models.User.findOne({
|
|
email: 'admin@semaphore.local'
|
|
}).exec(function (err, admin) {
|
|
if (!admin) {
|
|
console.log("Creating Admin user admin@semaphore.local!");
|
|
|
|
admin = new models.User({
|
|
email: 'admin@semaphore.local',
|
|
username: 'semaphore',
|
|
name: 'Administrator'
|
|
});
|
|
models.User.hashPassword('CastawayLabs', function (hash) {
|
|
admin.password = hash;
|
|
|
|
admin.save();
|
|
});
|
|
}
|
|
})
|
|
} |