Reference Source

js/servers/restify_server.js

  1. // NPM IMPORTS
  2. import assert from 'assert'
  3. import restify from 'restify'
  4.  
  5. // COMMON IMPORTS
  6. import T from 'devapt-core-common/dist/js/utils/types'
  7.  
  8. // SERVER IMPORTS
  9. import RoutableServer from './routable_server'
  10. import MetricsMiddleware from '../metrics/http/metrics_http_collector'
  11.  
  12.  
  13. let context = 'server/servers/restify_server'
  14.  
  15.  
  16.  
  17. /**
  18. * @file Restify server class.
  19. * @author Luc BORIES
  20. * @license Apache-2.0
  21. */
  22. export default class RestifyServer extends RoutableServer
  23. {
  24. /**
  25. * Create Restify server instance.
  26. * @extends RoutableServer
  27. *
  28. * @param {string} arg_name - server name
  29. * @param {object} arg_settings - plugin settings map
  30. * @param {string} arg_log_context - trace context string.
  31. *
  32. * @returns {nothing}
  33. */
  34. constructor(arg_name, arg_settings, arg_log_context=context)
  35. {
  36. super(arg_name, 'RestifyServer', arg_settings, arg_log_context)
  37. this.is_restify_server = true
  38. }
  39.  
  40. /**
  41. * Build private server instance.
  42. *
  43. * @returns {nothing}
  44. */
  45. build_server()
  46. {
  47. this.enter_group('build_server')
  48. assert( this.server_protocole == 'http' || this.server_protocole == 'https', context + ':bad protocole for restify [' + this.server_protocole + ']')
  49. // CREATE REST SERVER
  50. const server_settings = {}
  51. this.server = restify.createServer(server_settings)
  52. let server = this.server
  53.  
  54. // METRICS MIDDLEWARE
  55. server.use( MetricsMiddleware.create_middleware(this) )
  56.  
  57.  
  58. // USE ALL MIDDLEWARES WITHOUT SECURITY
  59. this.services_without_security.forEach(
  60. (arg_record) => {
  61. arg_record.svc.activate_on_server(arg_record.app, this, arg_record.cfg)
  62. }
  63. )
  64.  
  65.  
  66. // USE AUTHENTICATION MIDDLEWARES
  67. this.authentication.apply_middlewares(this)
  68. // TODO: USE AUTHORIZATION MIDDLEWARE
  69. // this.server.use( this.authorization.create_middleware() )
  70.  
  71. // USE ALL MIDDLEWARES WITH SECURITY
  72. this.services_with_security.forEach(
  73. (arg_record) => {
  74. arg_record.svc.activate_on_server(arg_record.app, this, arg_record.cfg)
  75. }
  76. )
  77. // TODO: LOAD MIDDLEWARES FROM SETTINGS
  78. // SET MIDDLEWARES
  79. const throttle_settings = {
  80. burst: 100,
  81. rate: 50,
  82. ip: true,
  83. overrides: {
  84. '192.168.1.1': {
  85. rate: 0, // unlimited
  86. burst: 0
  87. }
  88. }
  89. }
  90. // var acceptable = server.acceptable.concat(['application/x-es-module */*', 'application/x-es-module']);
  91. // console.log(acceptable, 'acceptable');
  92. // server.use(restify.acceptParser(acceptable));
  93. server.use( restify.acceptParser(server.acceptable) )
  94. server.use( restify.authorizationParser())
  95. server.use( restify.queryParser() )
  96. server.use( restify.jsonp() )
  97. server.use( restify.gzipResponse() )
  98. server.use( restify.bodyParser() )
  99. server.use( restify.requestLogger() )
  100. server.use( restify.throttle(throttle_settings) )
  101. // ERROR HANDLING
  102. server.on('InternalServerError',
  103. function (req, res, err, cb)
  104. {
  105. console.error(err, 'Internal server error');
  106. err._customContent = 'something is wrong!';
  107. return cb();
  108. }
  109. )
  110. // ENABLE / DISABLE AUDIT LOGS
  111. // const audit_settings = {
  112. // log: bunyan.createLogger(
  113. // {
  114. // name: 'audit',
  115. // stream: process.stdout
  116. // }
  117. // )
  118. // }
  119. // server.on('after', restify.auditLogger(audit_settings) )
  120. // SET URL
  121. this.server_url = this.server_protocole + '//' + this.server_host + ':' + this.server_port
  122. this.leave_group('build_server')
  123. }
  124. /**
  125. * Get server middleware for static route.
  126. *
  127. * @param {object} arg_cfg_route - plain object route configuration.
  128. *
  129. * @returns {middleware} - middleware function as f(req, res, next)
  130. */
  131. get_middleware_for_static_route(arg_cfg_route)
  132. {
  133. // DEBUG
  134. console.log(context + ':get_middleware_for_static_route:express static route', arg_cfg_route)
  135.  
  136.  
  137. // SEARCH ASSETS DIRECTORY
  138. let dir_path = undefined
  139. if ( path.isAbsolute(arg_cfg_route.directory) )
  140. {
  141. dir_path = arg_cfg_route.directory
  142. }
  143. if ( ! dir_path && T.isNotEmptyString(arg_cfg_route.pkg_base_dir) )
  144. {
  145. dir_path = runtime.context.get_absolute_path(arg_cfg_route.pkg_base_dir, arg_cfg_route.directory)
  146. }
  147. if ( ! dir_path && T.isNotEmptyString(arg_cfg_route.app_base_dir) )
  148. {
  149. dir_path = runtime.context.get_absolute_path(arg_cfg_route.app_base_dir, '../public', arg_cfg_route.directory)
  150. }
  151. if ( ! dir_path )
  152. {
  153. dir_path = runtime.context.get_absolute_public_path(arg_cfg_route.directory)
  154. }
  155.  
  156. const cb_arg = {
  157. directory: dir_path
  158. }
  159.  
  160. if ( T.isString(arg_cfg_route.default_file) )
  161. {
  162. cb_arg.default = arg_cfg_route.default_file
  163. }
  164.  
  165. // DEBUG
  166. // console.log(cb_arg, 'restify route cfg')
  167. // console.log('restify static route', arg_cfg_route.directory)
  168. return restify.serveStatic(cb_arg)
  169. }
  170. /**
  171. * Get server middleware for directory route.
  172. *
  173. * @param {object} arg_cfg_route - plain object route configuration.
  174. * @param {function} arg_callback - route handler callback.
  175. *
  176. * @returns {boolean} - success or failure.
  177. */
  178. add_get_route(arg_cfg_route, arg_callback)
  179. {
  180. this.enter_group('add_get_route')
  181.  
  182. assert( T.isObject(arg_cfg_route), this.get_context() + '::bad route config object')
  183. assert( T.isString(arg_cfg_route.full_route), this.get_context() + '::bad route config full_route string')
  184. assert( T.isFunction(arg_callback), this.get_context() + '::bad string')
  185.  
  186. // CHECK EXPRESS SERVER
  187. if ( ! this.server || ! T.isFunction(this.server.use) )
  188. {
  189. this.leave_group('add_get_route:bad server error')
  190. return false
  191. }
  192. this.server.get(arg_cfg_route.full_route, arg_callback)
  193. this.leave_group('add_get_route')
  194. return true
  195. }
  196. }