2017-08-28 19:27:45 +03:00
/ * *
2018-01-04 23:15:21 +03:00
* @ description MeshCentral database module
2017-08-28 19:27:45 +03:00
* @ author Ylian Saint - Hilaire
2018-01-04 23:15:21 +03:00
* @ copyright Intel Corporation 2018
* @ license Apache - 2.0
2017-08-28 19:27:45 +03:00
* @ version v0 . 0.2
* /
//
// Construct Meshcentral database object
//
// The default database is NeDB
// https://github.com/louischatriot/nedb
//
// Alternativety, MongoDB can be used
// https://www.mongodb.com/
// Just run with --mongodb [connectionstring], where the connection string is documented here: https://docs.mongodb.com/manual/reference/connection-string/
// The default collection is "meshcentral", but you can override it using --mongodbcol [collection]
//
module . exports . CreateDB = function ( args , datapath ) {
var obj = { } ;
obj . path = require ( 'path' ) ;
2017-09-13 21:25:57 +03:00
obj . identifier = null ;
2017-08-28 19:27:45 +03:00
if ( args . mongodb ) {
// Use MongoDB
obj . databaseType = 2 ;
2018-02-01 03:10:15 +03:00
var Datastore = require ( 'mongojs' ) ;
2017-08-28 19:27:45 +03:00
var db = Datastore ( args . mongodb ) ;
var dbcollection = 'meshcentral' ;
if ( args . mongodbcol ) { dbcollection = args . mongodbcol ; }
obj . file = db . collection ( dbcollection ) ;
} else {
// Use NeDB (The default)
obj . databaseType = 1 ;
var Datastore = require ( 'nedb' ) ;
obj . file = new Datastore ( { filename : obj . path . join ( datapath , 'meshcentral.db' ) , autoload : true } ) ;
obj . file . persistence . setAutocompactionInterval ( 3600 ) ;
}
obj . SetupDatabase = function ( func ) {
2017-09-13 21:25:57 +03:00
// Check if the database unique identifier is present
// This is used to check that in server peering mode, everyone is using the same database.
obj . Get ( 'DatabaseIdentifier' , function ( err , docs ) {
if ( ( docs . length == 1 ) && ( docs [ 0 ] . value != null ) ) {
obj . identifier = docs [ 0 ] . value ;
} else {
2017-10-15 09:22:19 +03:00
obj . identifier = new Buffer ( require ( 'crypto' ) . randomBytes ( 48 ) , 'binary' ) . toString ( 'hex' ) ;
2017-09-13 21:25:57 +03:00
obj . Set ( { _id : 'DatabaseIdentifier' , value : obj . identifier } ) ;
}
} ) ;
2017-08-28 19:27:45 +03:00
// Load database schema version and check if we need to update
obj . Get ( 'SchemaVersion' , function ( err , docs ) {
var ver = 0 ;
if ( docs && docs . length == 1 ) { ver = docs [ 0 ] . value ; }
2017-10-17 06:11:03 +03:00
if ( ver == 1 ) { console . log ( 'This is an unsupported beta 1 database, delete it to create a new one.' ) ; process . exit ( 0 ) ; }
2017-08-28 19:27:45 +03:00
2017-10-15 09:22:19 +03:00
// TODO: Any schema upgrades here...
2017-10-17 06:11:03 +03:00
obj . Set ( { _id : 'SchemaVersion' , value : 2 } ) ;
2017-08-28 19:27:45 +03:00
2017-10-15 09:22:19 +03:00
func ( ver ) ;
2017-08-28 19:27:45 +03:00
} ) ;
}
obj . cleanup = function ( ) {
// TODO: Remove all mesh links to invalid users
// TODO: Remove all meshes that dont have any links
// Remove all objects that have a "meshid" that no longer points to a valid mesh.
obj . GetAllType ( 'mesh' , function ( err , docs ) {
var meshlist = [ ] ;
if ( err == null && docs . length > 0 ) { for ( var i in docs ) { meshlist . push ( docs [ i ] . _id ) ; } }
obj . file . remove ( { meshid : { $exists : true , $nin : meshlist } } , { multi : true } ) ;
} ) ;
2017-12-13 03:04:54 +03:00
// Clear up all users
/ *
obj . GetAllType ( 'user' , function ( err , docs ) {
for ( var i in docs ) { if ( docs [ i ] . subscriptions != null ) { console . log ( 'Clean user: ' + docs [ i ] . name ) ; obj . SetUser ( docs [ i ] ) ; } } // Remove "subscriptions" that should not be there.
} ) ;
* /
2017-08-28 19:27:45 +03:00
}
2017-12-14 01:52:57 +03:00
obj . Set = function ( data , func ) { obj . file . update ( { _id : data . _id } , data , { upsert : true } , func ) ; }
2017-08-28 19:27:45 +03:00
obj . Get = function ( id , func ) { obj . file . find ( { _id : id } , func ) ; }
2017-09-02 03:34:02 +03:00
obj . GetAll = function ( func ) { obj . file . find ( { } , func ) ; }
2017-08-28 19:27:45 +03:00
obj . GetAllTypeNoTypeField = function ( type , domain , func ) { obj . file . find ( { type : type , domain : domain } , { type : 0 } , func ) ; }
obj . GetAllTypeNoTypeFieldMeshFiltered = function ( meshes , domain , type , func ) { obj . file . find ( { type : type , domain : domain , meshid : { $in : meshes } } , { type : 0 } , func ) ; }
obj . GetAllType = function ( type , func ) { obj . file . find ( { type : type } , func ) ; }
obj . GetAllIdsOfType = function ( ids , domain , type , func ) { obj . file . find ( { type : type , domain : domain , _id : { $in : ids } } , func ) ; }
2017-12-13 03:04:54 +03:00
obj . GetUserWithEmail = function ( domain , email , func ) { obj . file . find ( { type : 'user' , domain : domain , email : email } , { type : 0 } , func ) ; }
obj . GetUserWithVerifiedEmail = function ( domain , email , func ) { obj . file . find ( { type : 'user' , domain : domain , email : email , emailVerified : true } , { type : 0 } , func ) ; }
2017-08-28 19:27:45 +03:00
obj . Remove = function ( id ) { obj . file . remove ( { _id : id } ) ; }
2018-04-13 04:14:03 +03:00
obj . RemoveNode = function ( id ) { obj . file . remove ( { node : id } , { multi : true } ) ; }
2017-09-02 03:34:02 +03:00
obj . RemoveAll = function ( func ) { obj . file . remove ( { } , { multi : true } , func ) ; }
2018-01-03 03:52:49 +03:00
obj . RemoveAllOfType = function ( type , func ) { obj . file . remove ( { type : type } , { multi : true } , func ) ; }
2017-09-02 03:34:02 +03:00
obj . InsertMany = function ( data , func ) { obj . file . insert ( data , func ) ; }
2017-08-28 19:27:45 +03:00
obj . StoreEvent = function ( ids , source , event ) { obj . file . insert ( event ) ; }
2018-01-05 02:59:57 +03:00
obj . GetEvents = function ( ids , domain , func ) { if ( obj . databaseType == 1 ) { obj . file . find ( { type : 'event' , domain : domain , ids : { $in : ids } } , { type : 0 , _id : 0 , domain : 0 , ids : 0 , node : 0 } ) . sort ( { time : - 1 } ) . exec ( func ) ; } else { obj . file . find ( { type : 'event' , domain : domain , ids : { $in : ids } } , { type : 0 , _id : 0 , domain : 0 , ids : 0 , node : 0 } ) . sort ( { time : - 1 } , func ) } }
obj . GetEventsWithLimit = function ( ids , domain , limit , func ) { if ( obj . databaseType == 1 ) { obj . file . find ( { type : 'event' , domain : domain , ids : { $in : ids } } , { type : 0 , _id : 0 , domain : 0 , ids : 0 , node : 0 } ) . sort ( { time : - 1 } ) . limit ( limit ) . exec ( func ) ; } else { obj . file . find ( { type : 'event' , domain : domain , ids : { $in : ids } } , { type : 0 , _id : 0 , domain : 0 , ids : 0 , node : 0 } ) . sort ( { time : - 1 } ) . limit ( limit , func ) ; } }
2018-04-18 05:00:31 +03:00
obj . GetNodeEventsWithLimit = function ( nodeid , domain , limit , func ) { if ( obj . databaseType == 1 ) { obj . file . find ( { type : 'event' , domain : domain , nodeid : nodeid } , { type : 0 , _id : 0 , domain : 0 , ids : 0 , node : 0 } ) . sort ( { time : - 1 } ) . limit ( limit ) . exec ( func ) ; } else { obj . file . find ( { type : 'event' , domain : domain , nodeid : nodeid } , { type : 0 , _id : 0 , domain : 0 , ids : 0 , node : 0 } ) . sort ( { time : - 1 } ) . limit ( limit , func ) ; } }
2018-04-16 21:57:42 +03:00
obj . RemoveMesh = function ( id ) { obj . file . remove ( { mesh : id } , { multi : true } ) ; obj . file . remove ( { _id : id } ) ; obj . file . remove ( { _id : 'nt' + id } ) ; }
2017-08-28 19:27:45 +03:00
obj . RemoveAllEvents = function ( domain ) { obj . file . remove ( { type : 'event' , domain : domain } , { multi : true } ) ; }
obj . MakeSiteAdmin = function ( username , domain ) { obj . Get ( 'user/' + domain + '/' + username , function ( err , docs ) { if ( docs . length == 1 ) { docs [ 0 ] . siteadmin = 0xFFFFFFFF ; obj . Set ( docs [ 0 ] ) ; } } ) ; }
obj . DeleteDomain = function ( domain , func ) { obj . file . remove ( { domain : domain } , { multi : true } , func ) ; }
obj . SetUser = function ( user ) { var u = Clone ( user ) ; if ( u . subscriptions ) { delete u . subscriptions ; } obj . Set ( u ) ; }
obj . dispose = function ( ) { for ( var x in obj ) { if ( obj [ x ] . close ) { obj [ x ] . close ( ) ; } delete obj [ x ] ; } }
obj . clearOldEntries = function ( type , days , domain ) { var cutoff = Date . now ( ) - ( 1000 * 60 * 60 * 24 * days ) ; obj . file . remove ( { type : type , time : { $lt : cutoff } } , { multi : true } ) ; }
obj . getPowerTimeline = function ( nodeid , func ) { if ( obj . databaseType == 1 ) { obj . file . find ( { type : 'power' , node : { $in : [ '*' , nodeid ] } } ) . sort ( { time : 1 } ) . exec ( func ) ; } else { obj . file . find ( { type : 'power' , node : { $in : [ '*' , nodeid ] } } ) . sort ( { time : 1 } , func ) ; } }
obj . getLocalAmtNodes = function ( func ) { obj . file . find ( { type : 'node' , host : { $exists : true , $ne : null } , intelamt : { $exists : true } } , func ) ; }
2018-03-27 03:13:32 +03:00
obj . getAmtUuidNode = function ( meshid , uuid , func ) { obj . file . find ( { type : 'node' , meshid : meshid , 'intelamt.uuid' : uuid } , func ) ; }
2017-08-28 19:27:45 +03:00
2017-09-06 03:19:28 +03:00
// This is used to rate limit a number of operation per day. Returns a startValue each new days, but you can substract it and save the value in the db.
obj . getValueOfTheDay = function ( id , startValue , func ) { obj . Get ( id , function ( err , docs ) { var date = new Date ( ) , t = date . toLocaleDateString ( ) ; if ( docs . length == 1 ) { var r = docs [ 0 ] ; if ( r . day == t ) { func ( { _id : id , value : r . value , day : t } ) ; return ; } } func ( { _id : id , value : startValue , day : t } ) ; } ) ; }
2017-08-28 19:27:45 +03:00
function Clone ( v ) { return JSON . parse ( JSON . stringify ( v ) ) ; }
return obj ;
}