Reference Source

js/topology/registry/loaders/load_applications.js

  1. // SERVER IMPORTS
  2. import load_application from './load_application'
  3.  
  4.  
  5. const context = 'common/topology/registry/loaders/load_applications'
  6.  
  7.  
  8.  
  9. /**
  10. * Load the 'config.applications' key of the final state
  11. * Pure function: (Plain Object) => (mutated Plain Object)
  12. */
  13. function load_applications(logs, arg_config, arg_config_packages, arg_config_plugins, arg_config_services, arg_base_dir)
  14. {
  15. logs.info(context, 'loading world.tenants.*.applications')
  16. try{
  17. // LOOP ON APPLICATIONS
  18. let error = undefined
  19. Object.keys(arg_config).forEach(
  20. function(app_name)
  21. {
  22. if (arg_config.error)
  23. {
  24. error = arg_config.error
  25. }
  26. if (error)
  27. {
  28. logs.info(context, 'skip applications.' + app_name + ' because an error occured.')
  29. return
  30. }
  31.  
  32. logs.info(context, 'loading world.tenants.*.applications.' + app_name)
  33.  
  34. let app_cfg = arg_config[app_name]
  35. app_cfg = load_application(logs, app_name, app_cfg, arg_config_packages, arg_config_plugins, arg_config_services, arg_base_dir)
  36. // console.error(context, app_cfg)
  37.  
  38. // PROCESS ERRORS
  39. if (app_cfg.error)
  40. {
  41. error = app_cfg.error
  42. error.context = error.context + ' for ' + app_name
  43. // console.log(context + ' has error for ' + app_name, app_cfg.error)
  44. }
  45. }
  46. )
  47.  
  48. if (error)
  49. {
  50. arg_config = { error: error }
  51. // console.error(context, error)
  52. }
  53. }
  54. catch(e)
  55. {
  56. arg_config = { error: { context:context, exception:e } }
  57. }
  58. return arg_config
  59. }
  60.  
  61. export default load_applications