89 lines
2.9 KiB
JavaScript
89 lines
2.9 KiB
JavaScript
//
|
|
// Shinobi
|
|
// Copyright (C) 2016 Moe Alam, moeiscool
|
|
//
|
|
//
|
|
// # Donate
|
|
//
|
|
// If you like what I am doing here and want me to continue please consider donating :)
|
|
// PayPal : paypal@m03.ca
|
|
//
|
|
var os = require('os');
|
|
var io = new (require('socket.io'))()
|
|
// s = Shinobi
|
|
s = {
|
|
//Total Memory
|
|
coreCount : os.cpus().length,
|
|
//Total Memory
|
|
totalmem : os.totalmem(),
|
|
//Check Platform
|
|
platform : os.platform(),
|
|
//JSON stringify short-hand
|
|
s : JSON.stringify,
|
|
//Pretty Print JSON
|
|
prettyPrint : function(obj){return JSON.stringify(obj,null,3)},
|
|
//Check if Windows
|
|
isWin : (process.platform === 'win32' || process.platform === 'win64'),
|
|
//UTC Offset
|
|
utcOffset : require('moment')().utcOffset(),
|
|
//directory path for this file
|
|
mainDirectory : __dirname
|
|
}
|
|
//library loader
|
|
var loadLib = function(lib){
|
|
return require(__dirname+'/libs/'+lib+'.js')
|
|
}
|
|
//process handlers
|
|
loadLib('process')(process)
|
|
//configuration loader
|
|
var config = loadLib('config')(s)
|
|
//language loader
|
|
var lang = loadLib('language')(s,config)
|
|
//basic functions
|
|
loadLib('basic')(s,config)
|
|
//load extender functions
|
|
loadLib('extenders')(s,config)
|
|
//video processing engine
|
|
loadLib('ffmpeg')(s,config,function(){
|
|
//database connection : mysql, sqlite3..
|
|
loadLib('sql')(s,config)
|
|
//working directories : videos, streams, fileBin..
|
|
loadLib('folders')(s,config)
|
|
//authenticator functions : API, dashboard login..
|
|
loadLib('auth')(s,config,lang)
|
|
//express web server with ejs
|
|
var app = loadLib('webServer')(s,config,lang,io)
|
|
//web server routes : page handling..
|
|
loadLib('webServerPaths')(s,config,lang,app)
|
|
//web server routes for streams : streams..
|
|
loadLib('webServerStreamPaths')(s,config,lang,app)
|
|
//web server admin routes : create sub accounts, share monitors, share videos
|
|
loadLib('webServerAdminPaths')(s,config,lang,app)
|
|
//web server superuser routes : create admin accounts and manage system functions
|
|
loadLib('webServerSuperPaths')(s,config,lang,app)
|
|
//websocket connection handlers : login and streams..
|
|
loadLib('socketio')(s,config,lang,io)
|
|
//user and group functions
|
|
loadLib('user')(s,config)
|
|
//monitor/camera handlers
|
|
loadLib('monitor')(s,config,lang)
|
|
//event functions : motion, object matrix handler
|
|
loadLib('events')(s,config,lang)
|
|
//built-in detector functions : pam-diff..
|
|
loadLib('detector')(s,config)
|
|
//recording functions
|
|
loadLib('videos')(s,config,lang)
|
|
//plugins : websocket connected services..
|
|
loadLib('plugins')(s,config,lang)
|
|
//health : cpu and ram trackers..
|
|
loadLib('health')(s,config,lang,io)
|
|
//cluster module
|
|
loadLib('childNode')(s,config,lang,app,io)
|
|
//cloud uploaders : amazon s3, webdav, backblaze b2..
|
|
loadLib('cloudUploaders')(s,config,lang)
|
|
//notifiers : discord..
|
|
loadLib('notification')(s,config,lang)
|
|
//on-start actions
|
|
loadLib('startup')(s,config,lang)
|
|
})
|