Skip to content
Snippets Groups Projects
Verified Commit 316b1078 authored by Erick Hitter's avatar Erick Hitter
Browse files

Reorganization and inline doc

parent 6b58e90e
Branches
Tags v1.0.0
No related merge requests found
'use strict';
/**
* LIBRARIES
*/
var augustctl = require( './index' );
var express = require( 'express' );
var morgan = require( 'morgan' );
......@@ -18,6 +22,10 @@ var port = serverConfig.port || 3000;
var app = express();
app.use( morgan( DEBUG ? 'dev' : 'combined' ) );
/**
* UTILITIES
*/
// Default return arguments
var ret = {
'status': -1,
......@@ -25,6 +33,32 @@ var ret = {
'msg': ''
};
// Convert named status to integer representation
function statusStringtoInt( status ) {
var statusInt = -1;
if ( 'locked' === status ) {
statusInt = 0;
} else if ( 'unlocked' === status ) {
statusInt = 1;
}
return statusInt;
}
// Clear cached routes
function clear_caches( lockName ) {
apicache.clear( '/api/status/' + lockName );
apicache.clear( '/api/lock/' + lockName );
apicache.clear( '/api/unlock/' + lockName );
return true;
}
/**
* ROUTES
*/
// Endpoint to check lock status
app.get( '/api/status/:lock_name', cache( '15 seconds' ), function( req, res ) {
// Parse allowed request arguments
......@@ -125,27 +159,9 @@ app.get( '/api/disconnect/:lock_name', function( req, res ) {
res.sendStatus( 204 );
} );
// Convert named status to integer representation
function statusStringtoInt( status ) {
var statusInt = -1;
if ( 'locked' === status ) {
statusInt = 0;
} else if ( 'unlocked' === status ) {
statusInt = 1;
}
return statusInt;
}
// Clear cached routes
function clear_caches( lockName ) {
apicache.clear( '/api/status/' + lockName );
apicache.clear( '/api/lock/' + lockName );
apicache.clear( '/api/unlock/' + lockName );
return true;
}
/**
* SERVER SETUP
*/
// Parse lock configurations
Object.keys( config ).forEach( function( lockName ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment