step-node-agent 3.25.5 → 3.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (239) hide show
  1. package/AgentConf.yaml +13 -0
  2. package/api/controllers/controller.js +4 -0
  3. package/api/routes/routes.js +1 -0
  4. package/node_modules/get-fqdn/LICENSE +21 -0
  5. package/node_modules/get-fqdn/README.md +83 -0
  6. package/node_modules/get-fqdn/index.js +17 -0
  7. package/node_modules/get-fqdn/package.json +73 -0
  8. package/node_modules/yaml/LICENSE +13 -0
  9. package/node_modules/yaml/README.md +155 -0
  10. package/node_modules/yaml/bin.mjs +11 -0
  11. package/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
  12. package/node_modules/yaml/browser/dist/compose/compose-doc.js +42 -0
  13. package/node_modules/yaml/browser/dist/compose/compose-node.js +92 -0
  14. package/node_modules/yaml/browser/dist/compose/compose-scalar.js +80 -0
  15. package/node_modules/yaml/browser/dist/compose/composer.js +217 -0
  16. package/node_modules/yaml/browser/dist/compose/resolve-block-map.js +113 -0
  17. package/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
  18. package/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +47 -0
  19. package/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
  20. package/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +203 -0
  21. package/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
  22. package/node_modules/yaml/browser/dist/compose/resolve-props.js +148 -0
  23. package/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
  24. package/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +27 -0
  25. package/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
  26. package/node_modules/yaml/browser/dist/compose/util-map-includes.js +17 -0
  27. package/node_modules/yaml/browser/dist/doc/Document.js +334 -0
  28. package/node_modules/yaml/browser/dist/doc/anchors.js +72 -0
  29. package/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
  30. package/node_modules/yaml/browser/dist/doc/createNode.js +89 -0
  31. package/node_modules/yaml/browser/dist/doc/directives.js +176 -0
  32. package/node_modules/yaml/browser/dist/errors.js +57 -0
  33. package/node_modules/yaml/browser/dist/index.js +17 -0
  34. package/node_modules/yaml/browser/dist/log.js +14 -0
  35. package/node_modules/yaml/browser/dist/nodes/Alias.js +101 -0
  36. package/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
  37. package/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
  38. package/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
  39. package/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
  40. package/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
  41. package/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
  42. package/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +104 -0
  43. package/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
  44. package/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
  45. package/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
  46. package/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
  47. package/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
  48. package/node_modules/yaml/browser/dist/parse/cst.js +98 -0
  49. package/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
  50. package/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
  51. package/node_modules/yaml/browser/dist/parse/parser.js +954 -0
  52. package/node_modules/yaml/browser/dist/public-api.js +99 -0
  53. package/node_modules/yaml/browser/dist/schema/Schema.js +38 -0
  54. package/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
  55. package/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
  56. package/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
  57. package/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
  58. package/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
  59. package/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
  60. package/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
  61. package/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
  62. package/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
  63. package/node_modules/yaml/browser/dist/schema/tags.js +83 -0
  64. package/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +66 -0
  65. package/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
  66. package/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
  67. package/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
  68. package/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
  69. package/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
  70. package/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +37 -0
  71. package/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
  72. package/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
  73. package/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
  74. package/node_modules/yaml/browser/dist/stringify/stringify.js +124 -0
  75. package/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +143 -0
  76. package/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
  77. package/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
  78. package/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
  79. package/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
  80. package/node_modules/yaml/browser/dist/stringify/stringifyString.js +328 -0
  81. package/node_modules/yaml/browser/dist/util.js +11 -0
  82. package/node_modules/yaml/browser/dist/visit.js +233 -0
  83. package/node_modules/yaml/browser/index.js +5 -0
  84. package/node_modules/yaml/browser/package.json +3 -0
  85. package/node_modules/yaml/dist/cli.d.ts +8 -0
  86. package/node_modules/yaml/dist/cli.mjs +199 -0
  87. package/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
  88. package/node_modules/yaml/dist/compose/compose-collection.js +90 -0
  89. package/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
  90. package/node_modules/yaml/dist/compose/compose-doc.js +44 -0
  91. package/node_modules/yaml/dist/compose/compose-node.d.ts +28 -0
  92. package/node_modules/yaml/dist/compose/compose-node.js +95 -0
  93. package/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
  94. package/node_modules/yaml/dist/compose/compose-scalar.js +82 -0
  95. package/node_modules/yaml/dist/compose/composer.d.ts +62 -0
  96. package/node_modules/yaml/dist/compose/composer.js +221 -0
  97. package/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
  98. package/node_modules/yaml/dist/compose/resolve-block-map.js +115 -0
  99. package/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
  100. package/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
  101. package/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
  102. package/node_modules/yaml/dist/compose/resolve-block-seq.js +49 -0
  103. package/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
  104. package/node_modules/yaml/dist/compose/resolve-end.js +39 -0
  105. package/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
  106. package/node_modules/yaml/dist/compose/resolve-flow-collection.js +205 -0
  107. package/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
  108. package/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
  109. package/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
  110. package/node_modules/yaml/dist/compose/resolve-props.js +150 -0
  111. package/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
  112. package/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
  113. package/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
  114. package/node_modules/yaml/dist/compose/util-empty-scalar-position.js +29 -0
  115. package/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
  116. package/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
  117. package/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
  118. package/node_modules/yaml/dist/compose/util-map-includes.js +19 -0
  119. package/node_modules/yaml/dist/doc/Document.d.ts +141 -0
  120. package/node_modules/yaml/dist/doc/Document.js +336 -0
  121. package/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
  122. package/node_modules/yaml/dist/doc/anchors.js +77 -0
  123. package/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
  124. package/node_modules/yaml/dist/doc/applyReviver.js +57 -0
  125. package/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
  126. package/node_modules/yaml/dist/doc/createNode.js +91 -0
  127. package/node_modules/yaml/dist/doc/directives.d.ts +49 -0
  128. package/node_modules/yaml/dist/doc/directives.js +178 -0
  129. package/node_modules/yaml/dist/errors.d.ts +21 -0
  130. package/node_modules/yaml/dist/errors.js +62 -0
  131. package/node_modules/yaml/dist/index.d.ts +22 -0
  132. package/node_modules/yaml/dist/index.js +50 -0
  133. package/node_modules/yaml/dist/log.d.ts +3 -0
  134. package/node_modules/yaml/dist/log.js +17 -0
  135. package/node_modules/yaml/dist/nodes/Alias.d.ts +28 -0
  136. package/node_modules/yaml/dist/nodes/Alias.js +103 -0
  137. package/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
  138. package/node_modules/yaml/dist/nodes/Collection.js +151 -0
  139. package/node_modules/yaml/dist/nodes/Node.d.ts +47 -0
  140. package/node_modules/yaml/dist/nodes/Node.js +40 -0
  141. package/node_modules/yaml/dist/nodes/Pair.d.ts +21 -0
  142. package/node_modules/yaml/dist/nodes/Pair.js +39 -0
  143. package/node_modules/yaml/dist/nodes/Scalar.d.ts +42 -0
  144. package/node_modules/yaml/dist/nodes/Scalar.js +27 -0
  145. package/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
  146. package/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
  147. package/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
  148. package/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
  149. package/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
  150. package/node_modules/yaml/dist/nodes/addPairToJSMap.js +106 -0
  151. package/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
  152. package/node_modules/yaml/dist/nodes/identity.js +53 -0
  153. package/node_modules/yaml/dist/nodes/toJS.d.ts +27 -0
  154. package/node_modules/yaml/dist/nodes/toJS.js +39 -0
  155. package/node_modules/yaml/dist/options.d.ts +338 -0
  156. package/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
  157. package/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
  158. package/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
  159. package/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
  160. package/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
  161. package/node_modules/yaml/dist/parse/cst-visit.js +99 -0
  162. package/node_modules/yaml/dist/parse/cst.d.ts +108 -0
  163. package/node_modules/yaml/dist/parse/cst.js +112 -0
  164. package/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
  165. package/node_modules/yaml/dist/parse/lexer.js +719 -0
  166. package/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
  167. package/node_modules/yaml/dist/parse/line-counter.js +41 -0
  168. package/node_modules/yaml/dist/parse/parser.d.ts +84 -0
  169. package/node_modules/yaml/dist/parse/parser.js +958 -0
  170. package/node_modules/yaml/dist/public-api.d.ts +43 -0
  171. package/node_modules/yaml/dist/public-api.js +104 -0
  172. package/node_modules/yaml/dist/schema/Schema.d.ts +18 -0
  173. package/node_modules/yaml/dist/schema/Schema.js +40 -0
  174. package/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
  175. package/node_modules/yaml/dist/schema/common/map.js +19 -0
  176. package/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
  177. package/node_modules/yaml/dist/schema/common/null.js +17 -0
  178. package/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
  179. package/node_modules/yaml/dist/schema/common/seq.js +19 -0
  180. package/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
  181. package/node_modules/yaml/dist/schema/common/string.js +16 -0
  182. package/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
  183. package/node_modules/yaml/dist/schema/core/bool.js +21 -0
  184. package/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
  185. package/node_modules/yaml/dist/schema/core/float.js +47 -0
  186. package/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
  187. package/node_modules/yaml/dist/schema/core/int.js +42 -0
  188. package/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
  189. package/node_modules/yaml/dist/schema/core/schema.js +25 -0
  190. package/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
  191. package/node_modules/yaml/dist/schema/json/schema.js +64 -0
  192. package/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
  193. package/node_modules/yaml/dist/schema/tags.d.ts +40 -0
  194. package/node_modules/yaml/dist/schema/tags.js +86 -0
  195. package/node_modules/yaml/dist/schema/types.d.ts +90 -0
  196. package/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
  197. package/node_modules/yaml/dist/schema/yaml-1.1/binary.js +68 -0
  198. package/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
  199. package/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
  200. package/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
  201. package/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
  202. package/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
  203. package/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
  204. package/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +28 -0
  205. package/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
  206. package/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
  207. package/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
  208. package/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
  209. package/node_modules/yaml/dist/schema/yaml-1.1/schema.js +39 -0
  210. package/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
  211. package/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
  212. package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
  213. package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
  214. package/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
  215. package/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
  216. package/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
  217. package/node_modules/yaml/dist/stringify/stringify.js +127 -0
  218. package/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
  219. package/node_modules/yaml/dist/stringify/stringifyCollection.js +145 -0
  220. package/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
  221. package/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
  222. package/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
  223. package/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
  224. package/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
  225. package/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
  226. package/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
  227. package/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
  228. package/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
  229. package/node_modules/yaml/dist/stringify/stringifyString.js +330 -0
  230. package/node_modules/yaml/dist/test-events.d.ts +4 -0
  231. package/node_modules/yaml/dist/test-events.js +134 -0
  232. package/node_modules/yaml/dist/util.d.ts +12 -0
  233. package/node_modules/yaml/dist/util.js +28 -0
  234. package/node_modules/yaml/dist/visit.d.ts +102 -0
  235. package/node_modules/yaml/dist/visit.js +236 -0
  236. package/node_modules/yaml/package.json +96 -0
  237. package/node_modules/yaml/util.js +2 -0
  238. package/package.json +7 -3
  239. package/server.js +50 -23
package/AgentConf.yaml ADDED
@@ -0,0 +1,13 @@
1
+ agentPort: '8082'
2
+ gridHost: http://localhost:8081
3
+ registrationPeriod: 1000
4
+ tokenGroups:
5
+ - capacity: 10
6
+ tokenConf:
7
+ attributes: {}
8
+ properties:
9
+ myProp1: myProp1
10
+ properties:
11
+ myProp1: myDefaultValue
12
+ myProp2: myValue2
13
+ keywords: keywords/keywords.js;
@@ -15,6 +15,10 @@ module.exports = function Controller (agentContext, fileManager) {
15
15
 
16
16
  exports.filemanager = fileManager
17
17
 
18
+ exports.isRunning = function (req, res) {
19
+ res.status(200).json('Agent is running')
20
+ }
21
+
18
22
  exports.reserveToken = function (req, res) {
19
23
  exports.reserveToken_(req.params.tokenId)
20
24
  res.json({})
@@ -4,6 +4,7 @@ module.exports = function (app, agentContext) {
4
4
  const FileManager = require('../filemanager/filemanager')
5
5
  const controller = new Controller(agentContext, new FileManager(agentContext))
6
6
 
7
+ app.route('/running').get(controller.isRunning)
7
8
  app.route('/token/:tokenId/reserve').get(controller.reserveToken)
8
9
  app.route('/token/:tokenId/release').get(controller.releaseToken)
9
10
  app.route('/token/:tokenId/process').post(controller.process)
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,83 @@
1
+ # get-fqdn
2
+
3
+ [![build status](https://github.com/forwardemail/get-fqdn/actions/workflows/ci.yml/badge.svg)](https://github.com/forwardemail/get-fqdn/actions/workflows/ci.yml)
4
+ [![code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)
5
+ [![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
6
+ [![made with lass](https://img.shields.io/badge/made_with-lass-95CC28.svg)](https://lass.js.org)
7
+ [![license](https://img.shields.io/github/license/forwardemail/get-fqdn.svg)](LICENSE)
8
+ [![npm downloads](https://img.shields.io/npm/dt/get-fqdn.svg)](https://npm.im/get-fqdn)
9
+
10
+ > Lookup the fully qualified domain name ("FQDN") of the current server's IP (default) or a custom IP. 90x faster than `hostname -f` and works with Node v14+.
11
+
12
+
13
+ ## Table of Contents
14
+
15
+ * [Install](#install)
16
+ * [Usage](#usage)
17
+ * [Performance](#performance)
18
+ * [Contributors](#contributors)
19
+ * [License](#license)
20
+
21
+
22
+ ## Install
23
+
24
+ [npm][]:
25
+
26
+ ```sh
27
+ npm install get-fqdn
28
+ ```
29
+
30
+
31
+ ## Usage
32
+
33
+ ```js
34
+ const getFQDN = require('get-fqdn');
35
+
36
+ // async/await usage
37
+ (async () => {
38
+ try {
39
+ const fqdn = await getFQDN();
40
+ console.log('fqdn', fqdn);
41
+ } catch (err) {
42
+ console.error(err);
43
+ }
44
+ });
45
+
46
+ // then/catch usage
47
+ getFQDN().then(fqdn => console.log('fqdn', fqdn)).catch(console.error);
48
+ ```
49
+
50
+ Note that you can also pass a custom IP:
51
+
52
+ ```js
53
+ const fqdn = await getFQDN('1.1.1.1');
54
+ console.log('fqdn', fqdn);
55
+ ```
56
+
57
+
58
+ ## Performance
59
+
60
+ This package runs approximately 90x faster than the alternative of using `hostname -f`.
61
+
62
+ It was built to ensure that [ForwardEmail.net](https://forwardemail.net) is as optimized as possible.
63
+
64
+ Others packages [were written in CoffeeScript](https://github.com/CliffS/fqdn-promise/blob/master/src/fqdn.coffee), used [deasync](https://github.com/rsrdesarrollo/node-fqdn/blob/master/index.js), or used the [hostname -f](https://github.com/fatelei/js-fqdn/blob/ffec496afb07559fb64dc5e6b78b50c6339d78c5/lib/fqdn.js) approach (also see the [fqdn][] package that uses the wrong approach too).
65
+
66
+
67
+ ## Contributors
68
+
69
+ | Name | Website |
70
+ | -------------- | -------------------------- |
71
+ | **Nick Baugh** | <http://niftylettuce.com/> |
72
+
73
+
74
+ ## License
75
+
76
+ [MIT](LICENSE) © [Nick Baugh](http://niftylettuce.com/)
77
+
78
+
79
+ ##
80
+
81
+ [npm]: https://www.npmjs.com/
82
+
83
+ [fqdn]: https://www.npmjs.com/package/fqdn
@@ -0,0 +1,17 @@
1
+ const os = require('node:os');
2
+ const dns = require('node:dns');
3
+
4
+ async function getFQDN(ip) {
5
+ if (ip) {
6
+ const { hostname } = await dns.promises.lookupService(ip, 0);
7
+ return hostname;
8
+ }
9
+
10
+ const { address } = await dns.promises.lookup(os.hostname(), {
11
+ hints: dns.ADDRCONFIG
12
+ });
13
+ const { hostname } = await dns.promises.lookupService(address, 0);
14
+ return hostname;
15
+ }
16
+
17
+ module.exports = getFQDN;
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "get-fqdn",
3
+ "description": "Lookup the fully qualified domain name (\"FQDN\") of the current server's IP (default) or a custom IP. 90x faster than `hostname -f` and works with Node v6.4+.",
4
+ "version": "1.0.0",
5
+ "author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
6
+ "bugs": {
7
+ "url": "https://github.com/forwardemail/get-fqdn/issues",
8
+ "email": "niftylettuce@gmail.com"
9
+ },
10
+ "contributors": [
11
+ "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)"
12
+ ],
13
+ "devDependencies": {
14
+ "@commitlint/cli": "^17.4.2",
15
+ "@commitlint/config-conventional": "^17.4.2",
16
+ "ava": "^5.1.0",
17
+ "cross-env": "^7.0.3",
18
+ "eslint": "^8.31.0",
19
+ "eslint-config-xo-lass": "^2.0.1",
20
+ "fixpack": "^4.0.0",
21
+ "husky": "^8.0.3",
22
+ "is-ci": "^3.0.1",
23
+ "lint-staged": "^13.1.0",
24
+ "nyc": "^15.1.0",
25
+ "remark-cli": "^11.0.0",
26
+ "remark-preset-github": "^4.0.4",
27
+ "rimraf": "^4.0.4",
28
+ "xo": "^0.53.1"
29
+ },
30
+ "engines": {
31
+ "node": ">=14"
32
+ },
33
+ "files": [
34
+ "index.js"
35
+ ],
36
+ "homepage": "https://github.com/forwardemail/get-fqdn",
37
+ "keywords": [
38
+ "address",
39
+ "dns",
40
+ "domain",
41
+ "domains",
42
+ "fetch",
43
+ "fqdn",
44
+ "fully",
45
+ "get",
46
+ "host",
47
+ "hostname",
48
+ "hostnames",
49
+ "ip",
50
+ "ipv4",
51
+ "ipv6",
52
+ "lookup",
53
+ "machine",
54
+ "name",
55
+ "os",
56
+ "qualifie",
57
+ "qualified",
58
+ "qualify"
59
+ ],
60
+ "license": "MIT",
61
+ "main": "index.js",
62
+ "repository": {
63
+ "type": "git",
64
+ "url": "https://github.com/forwardemail/get-fqdn"
65
+ },
66
+ "scripts": {
67
+ "lint": "xo --fix && remark . -qfo && fixpack",
68
+ "prepare": "husky install",
69
+ "pretest": "npm run lint",
70
+ "test": "npm run test-coverage",
71
+ "test-coverage": "cross-env NODE_ENV=test nyc ava"
72
+ }
73
+ }
@@ -0,0 +1,13 @@
1
+ Copyright Eemeli Aro <eemeli@gmail.com>
2
+
3
+ Permission to use, copy, modify, and/or distribute this software for any purpose
4
+ with or without fee is hereby granted, provided that the above copyright notice
5
+ and this permission notice appear in all copies.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
8
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
9
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
10
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
11
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
12
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
13
+ THIS SOFTWARE.
@@ -0,0 +1,155 @@
1
+ # YAML <a href="https://www.npmjs.com/package/yaml"><img align="right" src="https://badge.fury.io/js/yaml.svg" title="npm package" /></a>
2
+
3
+ `yaml` is a definitive library for [YAML](https://yaml.org/), the human friendly data serialization standard.
4
+ This library:
5
+
6
+ - Supports both YAML 1.1 and YAML 1.2 and all common data schemas,
7
+ - Passes all of the [yaml-test-suite](https://github.com/yaml/yaml-test-suite) tests,
8
+ - Can accept any string as input without throwing, parsing as much YAML out of it as it can, and
9
+ - Supports parsing, modifying, and writing YAML comments and blank lines.
10
+
11
+ The library is released under the ISC open source license, and the code is [available on GitHub](https://github.com/eemeli/yaml/).
12
+ It has no external dependencies and runs on Node.js as well as modern browsers.
13
+
14
+ For the purposes of versioning, any changes that break any of the documented endpoints or APIs will be considered semver-major breaking changes.
15
+ Undocumented library internals may change between minor versions, and previous APIs may be deprecated (but not removed).
16
+
17
+ The minimum supported TypeScript version of the included typings is 3.9;
18
+ for use in earlier versions you may need to set `skipLibCheck: true` in your config.
19
+ This requirement may be updated between minor versions of the library.
20
+
21
+ For more information, see the project's documentation site: [**eemeli.org/yaml**](https://eemeli.org/yaml/)
22
+
23
+ To install:
24
+
25
+ ```sh
26
+ npm install yaml
27
+ ```
28
+
29
+ **Note:** These docs are for `yaml@2`. For v1, see the [v1.10.0 tag](https://github.com/eemeli/yaml/tree/v1.10.0) for the source and [eemeli.org/yaml/v1](https://eemeli.org/yaml/v1/) for the documentation.
30
+
31
+ The development and maintenance of this library is [sponsored](https://github.com/sponsors/eemeli) by:
32
+
33
+ <a href="https://www.scipress.io/">
34
+ <img width=150 src="https://eemeli.org/yaml/images/scipress.svg" alt="Scipress" />
35
+ </a>
36
+
37
+ ## API Overview
38
+
39
+ The API provided by `yaml` has three layers, depending on how deep you need to go: [Parse & Stringify](https://eemeli.org/yaml/#parse-amp-stringify), [Documents](https://eemeli.org/yaml/#documents), and the underlying [Lexer/Parser/Composer](https://eemeli.org/yaml/#parsing-yaml).
40
+ The first has the simplest API and "just works", the second gets you all the bells and whistles supported by the library along with a decent [AST](https://eemeli.org/yaml/#content-nodes), and the third lets you get progressively closer to YAML source, if that's your thing.
41
+
42
+ A [command-line tool](https://eemeli.org/yaml/#command-line-tool) is also included.
43
+
44
+ ```js
45
+ import { parse, stringify } from 'yaml'
46
+ // or
47
+ import YAML from 'yaml'
48
+ // or
49
+ const YAML = require('yaml')
50
+ ```
51
+
52
+ ### Parse & Stringify
53
+
54
+ - [`parse(str, reviver?, options?): value`](https://eemeli.org/yaml/#yaml-parse)
55
+ - [`stringify(value, replacer?, options?): string`](https://eemeli.org/yaml/#yaml-stringify)
56
+
57
+ ### Documents
58
+
59
+ - [`Document`](https://eemeli.org/yaml/#documents)
60
+ - [`constructor(value, replacer?, options?)`](https://eemeli.org/yaml/#creating-documents)
61
+ - [`#anchors`](https://eemeli.org/yaml/#working-with-anchors)
62
+ - [`#contents`](https://eemeli.org/yaml/#content-nodes)
63
+ - [`#directives`](https://eemeli.org/yaml/#stream-directives)
64
+ - [`#errors`](https://eemeli.org/yaml/#errors)
65
+ - [`#warnings`](https://eemeli.org/yaml/#errors)
66
+ - [`isDocument(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
67
+ - [`parseAllDocuments(str, options?): Document[]`](https://eemeli.org/yaml/#parsing-documents)
68
+ - [`parseDocument(str, options?): Document`](https://eemeli.org/yaml/#parsing-documents)
69
+
70
+ ### Content Nodes
71
+
72
+ - [`isAlias(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
73
+ - [`isCollection(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
74
+ - [`isMap(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
75
+ - [`isNode(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
76
+ - [`isPair(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
77
+ - [`isScalar(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
78
+ - [`isSeq(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
79
+ - [`new Scalar(value)`](https://eemeli.org/yaml/#scalar-values)
80
+ - [`new YAMLMap()`](https://eemeli.org/yaml/#collections)
81
+ - [`new YAMLSeq()`](https://eemeli.org/yaml/#collections)
82
+ - [`doc.createAlias(node, name?): Alias`](https://eemeli.org/yaml/#working-with-anchors)
83
+ - [`doc.createNode(value, options?): Node`](https://eemeli.org/yaml/#creating-nodes)
84
+ - [`doc.createPair(key, value): Pair`](https://eemeli.org/yaml/#creating-nodes)
85
+ - [`visit(node, visitor)`](https://eemeli.org/yaml/#finding-and-modifying-nodes)
86
+
87
+ ### Parsing YAML
88
+
89
+ - [`new Lexer().lex(src)`](https://eemeli.org/yaml/#lexer)
90
+ - [`new Parser(onNewLine?).parse(src)`](https://eemeli.org/yaml/#parser)
91
+ - [`new Composer(options?).compose(tokens)`](https://eemeli.org/yaml/#composer)
92
+
93
+ ## YAML.parse
94
+
95
+ ```yaml
96
+ # file.yml
97
+ YAML:
98
+ - A human-readable data serialization language
99
+ - https://en.wikipedia.org/wiki/YAML
100
+ yaml:
101
+ - A complete JavaScript implementation
102
+ - https://www.npmjs.com/package/yaml
103
+ ```
104
+
105
+ ```js
106
+ import fs from 'fs'
107
+ import YAML from 'yaml'
108
+
109
+ YAML.parse('3.14159')
110
+ // 3.14159
111
+
112
+ YAML.parse('[ true, false, maybe, null ]\n')
113
+ // [ true, false, 'maybe', null ]
114
+
115
+ const file = fs.readFileSync('./file.yml', 'utf8')
116
+ YAML.parse(file)
117
+ // { YAML:
118
+ // [ 'A human-readable data serialization language',
119
+ // 'https://en.wikipedia.org/wiki/YAML' ],
120
+ // yaml:
121
+ // [ 'A complete JavaScript implementation',
122
+ // 'https://www.npmjs.com/package/yaml' ] }
123
+ ```
124
+
125
+ ## YAML.stringify
126
+
127
+ ```js
128
+ import YAML from 'yaml'
129
+
130
+ YAML.stringify(3.14159)
131
+ // '3.14159\n'
132
+
133
+ YAML.stringify([true, false, 'maybe', null])
134
+ // `- true
135
+ // - false
136
+ // - maybe
137
+ // - null
138
+ // `
139
+
140
+ YAML.stringify({ number: 3, plain: 'string', block: 'two\nlines\n' })
141
+ // `number: 3
142
+ // plain: string
143
+ // block: |
144
+ // two
145
+ // lines
146
+ // `
147
+ ```
148
+
149
+ ---
150
+
151
+ Browser testing provided by:
152
+
153
+ <a href="https://www.browserstack.com/open-source">
154
+ <img width=200 src="https://eemeli.org/yaml/images/browserstack.svg" alt="BrowserStack" />
155
+ </a>
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { UserError, cli, help } from './dist/cli.mjs'
4
+
5
+ cli(process.stdin, error => {
6
+ if (error instanceof UserError) {
7
+ if (error.code === UserError.ARGS) console.error(`${help}\n`)
8
+ console.error(error.message)
9
+ process.exitCode = error.code
10
+ } else if (error) throw error
11
+ })
@@ -0,0 +1,88 @@
1
+ import { isNode } from '../nodes/identity.js';
2
+ import { Scalar } from '../nodes/Scalar.js';
3
+ import { YAMLMap } from '../nodes/YAMLMap.js';
4
+ import { YAMLSeq } from '../nodes/YAMLSeq.js';
5
+ import { resolveBlockMap } from './resolve-block-map.js';
6
+ import { resolveBlockSeq } from './resolve-block-seq.js';
7
+ import { resolveFlowCollection } from './resolve-flow-collection.js';
8
+
9
+ function resolveCollection(CN, ctx, token, onError, tagName, tag) {
10
+ const coll = token.type === 'block-map'
11
+ ? resolveBlockMap(CN, ctx, token, onError, tag)
12
+ : token.type === 'block-seq'
13
+ ? resolveBlockSeq(CN, ctx, token, onError, tag)
14
+ : resolveFlowCollection(CN, ctx, token, onError, tag);
15
+ const Coll = coll.constructor;
16
+ // If we got a tagName matching the class, or the tag name is '!',
17
+ // then use the tagName from the node class used to create it.
18
+ if (tagName === '!' || tagName === Coll.tagName) {
19
+ coll.tag = Coll.tagName;
20
+ return coll;
21
+ }
22
+ if (tagName)
23
+ coll.tag = tagName;
24
+ return coll;
25
+ }
26
+ function composeCollection(CN, ctx, token, props, onError) {
27
+ const tagToken = props.tag;
28
+ const tagName = !tagToken
29
+ ? null
30
+ : ctx.directives.tagName(tagToken.source, msg => onError(tagToken, 'TAG_RESOLVE_FAILED', msg));
31
+ if (token.type === 'block-seq') {
32
+ const { anchor, newlineAfterProp: nl } = props;
33
+ const lastProp = anchor && tagToken
34
+ ? anchor.offset > tagToken.offset
35
+ ? anchor
36
+ : tagToken
37
+ : (anchor ?? tagToken);
38
+ if (lastProp && (!nl || nl.offset < lastProp.offset)) {
39
+ const message = 'Missing newline after block sequence props';
40
+ onError(lastProp, 'MISSING_CHAR', message);
41
+ }
42
+ }
43
+ const expType = token.type === 'block-map'
44
+ ? 'map'
45
+ : token.type === 'block-seq'
46
+ ? 'seq'
47
+ : token.start.source === '{'
48
+ ? 'map'
49
+ : 'seq';
50
+ // shortcut: check if it's a generic YAMLMap or YAMLSeq
51
+ // before jumping into the custom tag logic.
52
+ if (!tagToken ||
53
+ !tagName ||
54
+ tagName === '!' ||
55
+ (tagName === YAMLMap.tagName && expType === 'map') ||
56
+ (tagName === YAMLSeq.tagName && expType === 'seq')) {
57
+ return resolveCollection(CN, ctx, token, onError, tagName);
58
+ }
59
+ let tag = ctx.schema.tags.find(t => t.tag === tagName && t.collection === expType);
60
+ if (!tag) {
61
+ const kt = ctx.schema.knownTags[tagName];
62
+ if (kt && kt.collection === expType) {
63
+ ctx.schema.tags.push(Object.assign({}, kt, { default: false }));
64
+ tag = kt;
65
+ }
66
+ else {
67
+ if (kt?.collection) {
68
+ onError(tagToken, 'BAD_COLLECTION_TYPE', `${kt.tag} used for ${expType} collection, but expects ${kt.collection}`, true);
69
+ }
70
+ else {
71
+ onError(tagToken, 'TAG_RESOLVE_FAILED', `Unresolved tag: ${tagName}`, true);
72
+ }
73
+ return resolveCollection(CN, ctx, token, onError, tagName);
74
+ }
75
+ }
76
+ const coll = resolveCollection(CN, ctx, token, onError, tagName, tag);
77
+ const res = tag.resolve?.(coll, msg => onError(tagToken, 'TAG_RESOLVE_FAILED', msg), ctx.options) ?? coll;
78
+ const node = isNode(res)
79
+ ? res
80
+ : new Scalar(res);
81
+ node.range = coll.range;
82
+ node.tag = tagName;
83
+ if (tag?.format)
84
+ node.format = tag.format;
85
+ return node;
86
+ }
87
+
88
+ export { composeCollection };
@@ -0,0 +1,42 @@
1
+ import { Document } from '../doc/Document.js';
2
+ import { composeNode, composeEmptyNode } from './compose-node.js';
3
+ import { resolveEnd } from './resolve-end.js';
4
+ import { resolveProps } from './resolve-props.js';
5
+
6
+ function composeDoc(options, directives, { offset, start, value, end }, onError) {
7
+ const opts = Object.assign({ _directives: directives }, options);
8
+ const doc = new Document(undefined, opts);
9
+ const ctx = {
10
+ atRoot: true,
11
+ directives: doc.directives,
12
+ options: doc.options,
13
+ schema: doc.schema
14
+ };
15
+ const props = resolveProps(start, {
16
+ indicator: 'doc-start',
17
+ next: value ?? end?.[0],
18
+ offset,
19
+ onError,
20
+ parentIndent: 0,
21
+ startOnNewline: true
22
+ });
23
+ if (props.found) {
24
+ doc.directives.docStart = true;
25
+ if (value &&
26
+ (value.type === 'block-map' || value.type === 'block-seq') &&
27
+ !props.hasNewline)
28
+ onError(props.end, 'MISSING_CHAR', 'Block collection cannot start on same line with directives-end marker');
29
+ }
30
+ // @ts-expect-error If Contents is set, let's trust the user
31
+ doc.contents = value
32
+ ? composeNode(ctx, value, props, onError)
33
+ : composeEmptyNode(ctx, props.end, start, null, props, onError);
34
+ const contentEnd = doc.contents.range[2];
35
+ const re = resolveEnd(end, contentEnd, false, onError);
36
+ if (re.comment)
37
+ doc.comment = re.comment;
38
+ doc.range = [offset, contentEnd, re.offset];
39
+ return doc;
40
+ }
41
+
42
+ export { composeDoc };
@@ -0,0 +1,92 @@
1
+ import { Alias } from '../nodes/Alias.js';
2
+ import { composeCollection } from './compose-collection.js';
3
+ import { composeScalar } from './compose-scalar.js';
4
+ import { resolveEnd } from './resolve-end.js';
5
+ import { emptyScalarPosition } from './util-empty-scalar-position.js';
6
+
7
+ const CN = { composeNode, composeEmptyNode };
8
+ function composeNode(ctx, token, props, onError) {
9
+ const { spaceBefore, comment, anchor, tag } = props;
10
+ let node;
11
+ let isSrcToken = true;
12
+ switch (token.type) {
13
+ case 'alias':
14
+ node = composeAlias(ctx, token, onError);
15
+ if (anchor || tag)
16
+ onError(token, 'ALIAS_PROPS', 'An alias node must not specify any properties');
17
+ break;
18
+ case 'scalar':
19
+ case 'single-quoted-scalar':
20
+ case 'double-quoted-scalar':
21
+ case 'block-scalar':
22
+ node = composeScalar(ctx, token, tag, onError);
23
+ if (anchor)
24
+ node.anchor = anchor.source.substring(1);
25
+ break;
26
+ case 'block-map':
27
+ case 'block-seq':
28
+ case 'flow-collection':
29
+ node = composeCollection(CN, ctx, token, props, onError);
30
+ if (anchor)
31
+ node.anchor = anchor.source.substring(1);
32
+ break;
33
+ default: {
34
+ const message = token.type === 'error'
35
+ ? token.message
36
+ : `Unsupported token (type: ${token.type})`;
37
+ onError(token, 'UNEXPECTED_TOKEN', message);
38
+ node = composeEmptyNode(ctx, token.offset, undefined, null, props, onError);
39
+ isSrcToken = false;
40
+ }
41
+ }
42
+ if (anchor && node.anchor === '')
43
+ onError(anchor, 'BAD_ALIAS', 'Anchor cannot be an empty string');
44
+ if (spaceBefore)
45
+ node.spaceBefore = true;
46
+ if (comment) {
47
+ if (token.type === 'scalar' && token.source === '')
48
+ node.comment = comment;
49
+ else
50
+ node.commentBefore = comment;
51
+ }
52
+ // @ts-expect-error Type checking misses meaning of isSrcToken
53
+ if (ctx.options.keepSourceTokens && isSrcToken)
54
+ node.srcToken = token;
55
+ return node;
56
+ }
57
+ function composeEmptyNode(ctx, offset, before, pos, { spaceBefore, comment, anchor, tag, end }, onError) {
58
+ const token = {
59
+ type: 'scalar',
60
+ offset: emptyScalarPosition(offset, before, pos),
61
+ indent: -1,
62
+ source: ''
63
+ };
64
+ const node = composeScalar(ctx, token, tag, onError);
65
+ if (anchor) {
66
+ node.anchor = anchor.source.substring(1);
67
+ if (node.anchor === '')
68
+ onError(anchor, 'BAD_ALIAS', 'Anchor cannot be an empty string');
69
+ }
70
+ if (spaceBefore)
71
+ node.spaceBefore = true;
72
+ if (comment) {
73
+ node.comment = comment;
74
+ node.range[2] = end;
75
+ }
76
+ return node;
77
+ }
78
+ function composeAlias({ options }, { offset, source, end }, onError) {
79
+ const alias = new Alias(source.substring(1));
80
+ if (alias.source === '')
81
+ onError(offset, 'BAD_ALIAS', 'Alias cannot be an empty string');
82
+ if (alias.source.endsWith(':'))
83
+ onError(offset + source.length - 1, 'BAD_ALIAS', 'Alias ending in : is ambiguous', true);
84
+ const valueEnd = offset + source.length;
85
+ const re = resolveEnd(end, valueEnd, options.strict, onError);
86
+ alias.range = [offset, valueEnd, re.offset];
87
+ if (re.comment)
88
+ alias.comment = re.comment;
89
+ return alias;
90
+ }
91
+
92
+ export { composeEmptyNode, composeNode };