httpServer.ts 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. ///
  2. /// Copyright © 2016-2023 The Thingsboard Authors
  3. ///
  4. /// Licensed under the Apache License, Version 2.0 (the "License");
  5. /// you may not use this file except in compliance with the License.
  6. /// You may obtain a copy of the License at
  7. ///
  8. /// http://www.apache.org/licenses/LICENSE-2.0
  9. ///
  10. /// Unless required by applicable law or agreed to in writing, software
  11. /// distributed under the License is distributed on an "AS IS" BASIS,
  12. /// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. /// See the License for the specific language governing permissions and
  14. /// limitations under the License.
  15. ///
  16. import express from 'express';
  17. import { _logger} from '../config/logger';
  18. import http from 'http';
  19. import { Socket } from 'net';
  20. export class HttpServer {
  21. private logger = _logger('httpServer');
  22. private app = express();
  23. private server: http.Server | null;
  24. private connections: Socket[] = [];
  25. constructor(httpPort: number) {
  26. this.app.get('/livenessProbe', async (req, res) => {
  27. const message = {
  28. now: new Date().toISOString()
  29. };
  30. res.send(message);
  31. })
  32. this.server = this.app.listen(httpPort, () => {
  33. this.logger.info('Started HTTP endpoint on port %s. Please, use /livenessProbe !', httpPort);
  34. }).on('error', (error) => {
  35. this.logger.error(error);
  36. });
  37. this.server.on('connection', connection => {
  38. this.connections.push(connection);
  39. connection.on('close', () => this.connections = this.connections.filter(curr => curr !== connection));
  40. });
  41. }
  42. async stop() {
  43. if (this.server) {
  44. this.logger.info('Stopping HTTP Server...');
  45. const _server = this.server;
  46. this.server = null;
  47. this.connections.forEach(curr => curr.end(() => curr.destroy()));
  48. await new Promise<void>(
  49. (resolve, reject) => {
  50. _server.close((err) => {
  51. this.logger.info('HTTP Server stopped.');
  52. resolve();
  53. });
  54. }
  55. );
  56. }
  57. }
  58. }