105 lines
2.2 KiB
JavaScript
105 lines
2.2 KiB
JavaScript
'use strict'
|
|
|
|
// Depedencies
|
|
let path = require( 'path' ),
|
|
colors = require( 'colors' ),
|
|
ip = require( 'ip' ),
|
|
Site = require( '../site/site.class.js' ),
|
|
Watcher = require( '../watcher/watcher.class.js' )
|
|
|
|
/**
|
|
* Keppler class
|
|
*/
|
|
class Keppler
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor( _options )
|
|
{
|
|
this.set_arguments()
|
|
this.set_options( _options )
|
|
this.set_site()
|
|
this.set_watcher()
|
|
}
|
|
|
|
/**
|
|
* Set options
|
|
*/
|
|
set_options( _options )
|
|
{
|
|
// No option
|
|
if( typeof _options !== 'object' )
|
|
_options = {}
|
|
|
|
// Defaults
|
|
if( typeof _options.debug === 'undefined' )
|
|
{
|
|
if( this.arguments.length )
|
|
{
|
|
_options.debug = this.arguments[ this.arguments.length - 1 ] === 'true' ? true : false
|
|
}
|
|
else
|
|
{
|
|
_options.debug = false
|
|
}
|
|
}
|
|
|
|
if( typeof _options.port === 'undefined' )
|
|
_options.port = 1571
|
|
|
|
if( typeof _options.domain === 'undefined' )
|
|
_options.domain = `http://${ip.address()}:${_options.port}`
|
|
|
|
// Save
|
|
this.options = _options
|
|
}
|
|
|
|
/**
|
|
* Set arguments
|
|
* Retrieve arguments and test if missing
|
|
*/
|
|
set_arguments()
|
|
{
|
|
// Set up
|
|
this.arguments = process.argv.slice( 2 )
|
|
|
|
// Missing project name
|
|
if( this.arguments.length === 0 )
|
|
{
|
|
// Stop process
|
|
console.log( 'Missing arguments: first argument should be the projet name'.red )
|
|
process.exit()
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Set site
|
|
* Instantiate site
|
|
*/
|
|
set_site()
|
|
{
|
|
this.site = new Site( {
|
|
port : this.options.port,
|
|
domain: this.options.domain,
|
|
debug : this.options.debug
|
|
} )
|
|
}
|
|
|
|
/**
|
|
* Set watcher
|
|
* Instantiate watcher
|
|
*/
|
|
set_watcher()
|
|
{
|
|
this.watcher = new Watcher( {
|
|
port : this.options.port,
|
|
domain: this.options.domain,
|
|
debug : this.options.debug,
|
|
name : this.arguments[ 0 ]
|
|
} )
|
|
}
|
|
}
|
|
|
|
module.exports = Keppler
|