@stdlib/net-disposable-http-server
Version:
Disposable HTTP server.
85 lines (75 loc) • 2.68 kB
JavaScript
/**
* @license Apache-2.0
*
* Copyright (c) 2018 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
;
// MODULES //
var isBuffer = require( '@stdlib/assert-is-buffer' );
var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
var isString = require( '@stdlib/assert-is-string' ).isPrimitive;
var isObject = require( '@stdlib/assert-is-plain-object' );
var hasOwnProp = require( '@stdlib/assert-has-own-property' );
var format = require( '@stdlib/string-format' );
// MAIN //
/**
* Validates function options.
*
* @private
* @param {Object} opts - destination object
* @param {Options} options - function options
* @param {(Buffer|string)} [options.html] - HTML content to serve
* @param {(Buffer|string)} [options.javascript] - JavaScript script to serve
* @param {boolean} [options.open] - indicates whether to launch a web browser
* @returns {Error|null} error or null
*
* @example
* var options = {
* 'port': 7331,
* 'address': '127.0.0.1',
* 'open': false
* };
* var opts = {};
* var err = validate( opts, options );
* if ( err ) {
* throw err;
* }
*/
function validate( opts, options ) {
if ( !isObject( options ) ) {
return new TypeError( format( 'invalid argument. Options argument must be an object. Value: `%s`.', options ) );
}
if ( hasOwnProp( options, 'html' ) ) {
opts.html = options.html;
if ( !isBuffer( opts.html ) && !isString( opts.html ) ) {
return new TypeError( format( 'invalid option. `%s` option must be either a Buffer or a string. Option: `%s`.', 'html', opts.html ) );
}
}
if ( hasOwnProp( options, 'javascript' ) ) {
opts.javascript = options.javascript;
if ( !isBuffer( opts.javascript ) && !isString( opts.javascript ) ) {
return new TypeError( format( 'invalid option. `%s` option must be either a Buffer or a string. Option: `%s`.', 'javascript', opts.javascript ) );
}
}
if ( hasOwnProp( options, 'open' ) ) {
opts.open = options.open;
if ( !isBoolean( opts.open ) ) {
return new TypeError( format( 'invalid option. `%s` option must be a boolean. Option: `%s`.', 'open', opts.open ) );
}
}
return null;
}
// EXPORTS //
module.exports = validate;