step-node-agent 3.25.5 → 3.26.1
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.
- package/AgentConf.yaml +13 -0
- package/api/controllers/controller.js +4 -0
- package/api/routes/routes.js +1 -0
- package/node_modules/cookie/index.js +117 -57
- package/node_modules/cookie/package.json +3 -3
- package/node_modules/express/History.md +5 -0
- package/node_modules/express/package.json +2 -2
- package/node_modules/get-fqdn/LICENSE +21 -0
- package/node_modules/get-fqdn/README.md +83 -0
- package/node_modules/get-fqdn/index.js +17 -0
- package/node_modules/get-fqdn/package.json +73 -0
- package/node_modules/yaml/LICENSE +13 -0
- package/node_modules/yaml/README.md +169 -0
- package/node_modules/yaml/bin.mjs +11 -0
- package/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
- package/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
- package/node_modules/yaml/browser/dist/compose/compose-node.js +102 -0
- package/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
- package/node_modules/yaml/browser/dist/compose/composer.js +217 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
- package/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
- package/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
- package/node_modules/yaml/browser/dist/compose/resolve-props.js +148 -0
- package/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +27 -0
- package/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
- package/node_modules/yaml/browser/dist/doc/Document.js +335 -0
- package/node_modules/yaml/browser/dist/doc/anchors.js +72 -0
- package/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/node_modules/yaml/browser/dist/doc/createNode.js +89 -0
- package/node_modules/yaml/browser/dist/doc/directives.js +176 -0
- package/node_modules/yaml/browser/dist/errors.js +57 -0
- package/node_modules/yaml/browser/dist/index.js +17 -0
- package/node_modules/yaml/browser/dist/log.js +14 -0
- package/node_modules/yaml/browser/dist/nodes/Alias.js +101 -0
- package/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
- package/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +62 -0
- package/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
- package/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/node_modules/yaml/browser/dist/parse/parser.js +954 -0
- package/node_modules/yaml/browser/dist/public-api.js +102 -0
- package/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
- package/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/node_modules/yaml/browser/dist/schema/tags.js +96 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +66 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +64 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
- package/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +143 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyString.js +328 -0
- package/node_modules/yaml/browser/dist/util.js +11 -0
- package/node_modules/yaml/browser/dist/visit.js +233 -0
- package/node_modules/yaml/browser/index.js +5 -0
- package/node_modules/yaml/browser/package.json +3 -0
- package/node_modules/yaml/dist/cli.d.ts +8 -0
- package/node_modules/yaml/dist/cli.mjs +199 -0
- package/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
- package/node_modules/yaml/dist/compose/compose-collection.js +90 -0
- package/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/node_modules/yaml/dist/compose/compose-doc.js +45 -0
- package/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
- package/node_modules/yaml/dist/compose/compose-node.js +105 -0
- package/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
- package/node_modules/yaml/dist/compose/composer.d.ts +62 -0
- package/node_modules/yaml/dist/compose/composer.js +221 -0
- package/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
- package/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
- package/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
- package/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
- package/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
- package/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
- package/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
- package/node_modules/yaml/dist/compose/resolve-props.js +150 -0
- package/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/node_modules/yaml/dist/compose/util-empty-scalar-position.js +29 -0
- package/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
- package/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/node_modules/yaml/dist/doc/Document.js +337 -0
- package/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/node_modules/yaml/dist/doc/anchors.js +77 -0
- package/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/node_modules/yaml/dist/doc/applyReviver.js +57 -0
- package/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/node_modules/yaml/dist/doc/createNode.js +91 -0
- package/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/node_modules/yaml/dist/doc/directives.js +178 -0
- package/node_modules/yaml/dist/errors.d.ts +21 -0
- package/node_modules/yaml/dist/errors.js +62 -0
- package/node_modules/yaml/dist/index.d.ts +22 -0
- package/node_modules/yaml/dist/index.js +50 -0
- package/node_modules/yaml/dist/log.d.ts +3 -0
- package/node_modules/yaml/dist/log.js +17 -0
- package/node_modules/yaml/dist/nodes/Alias.d.ts +28 -0
- package/node_modules/yaml/dist/nodes/Alias.js +103 -0
- package/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
- package/node_modules/yaml/dist/nodes/Collection.js +151 -0
- package/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
- package/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/node_modules/yaml/dist/nodes/Pair.d.ts +21 -0
- package/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/node_modules/yaml/dist/nodes/Scalar.d.ts +42 -0
- package/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/node_modules/yaml/dist/nodes/addPairToJSMap.js +64 -0
- package/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/node_modules/yaml/dist/nodes/toJS.d.ts +27 -0
- package/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/node_modules/yaml/dist/options.d.ts +344 -0
- package/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/node_modules/yaml/dist/parse/cst.d.ts +108 -0
- package/node_modules/yaml/dist/parse/cst.js +112 -0
- package/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/node_modules/yaml/dist/parse/lexer.js +719 -0
- package/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/node_modules/yaml/dist/parse/parser.js +958 -0
- package/node_modules/yaml/dist/public-api.d.ts +43 -0
- package/node_modules/yaml/dist/public-api.js +107 -0
- package/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
- package/node_modules/yaml/dist/schema/Schema.js +39 -0
- package/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/node_modules/yaml/dist/schema/tags.d.ts +48 -0
- package/node_modules/yaml/dist/schema/tags.js +99 -0
- package/node_modules/yaml/dist/schema/types.d.ts +92 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/binary.js +68 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/merge.js +68 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +28 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
- package/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/node_modules/yaml/dist/stringify/stringify.js +132 -0
- package/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/node_modules/yaml/dist/stringify/stringifyCollection.js +145 -0
- package/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
- package/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/node_modules/yaml/dist/stringify/stringifyString.js +330 -0
- package/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/node_modules/yaml/dist/test-events.js +134 -0
- package/node_modules/yaml/dist/util.d.ts +12 -0
- package/node_modules/yaml/dist/util.js +28 -0
- package/node_modules/yaml/dist/visit.d.ts +102 -0
- package/node_modules/yaml/dist/visit.js +236 -0
- package/node_modules/yaml/package.json +96 -0
- package/node_modules/yaml/util.js +2 -0
- package/package.json +7 -3
- package/server.js +50 -23
- package/node_modules/cookie/HISTORY.md +0 -147
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({})
|
package/api/routes/routes.js
CHANGED
|
@@ -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)
|
|
@@ -23,14 +23,66 @@ exports.serialize = serialize;
|
|
|
23
23
|
var __toString = Object.prototype.toString
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
|
-
* RegExp to match
|
|
26
|
+
* RegExp to match cookie-name in RFC 6265 sec 4.1.1
|
|
27
|
+
* This refers out to the obsoleted definition of token in RFC 2616 sec 2.2
|
|
28
|
+
* which has been replaced by the token definition in RFC 7230 appendix B.
|
|
27
29
|
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
30
|
+
* cookie-name = token
|
|
31
|
+
* token = 1*tchar
|
|
32
|
+
* tchar = "!" / "#" / "$" / "%" / "&" / "'" /
|
|
33
|
+
* "*" / "+" / "-" / "." / "^" / "_" /
|
|
34
|
+
* "`" / "|" / "~" / DIGIT / ALPHA
|
|
31
35
|
*/
|
|
32
36
|
|
|
33
|
-
var
|
|
37
|
+
var cookieNameRegExp = /^[!#$%&'*+\-.^_`|~0-9A-Za-z]+$/;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* RegExp to match cookie-value in RFC 6265 sec 4.1.1
|
|
41
|
+
*
|
|
42
|
+
* cookie-value = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
|
|
43
|
+
* cookie-octet = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
|
|
44
|
+
* ; US-ASCII characters excluding CTLs,
|
|
45
|
+
* ; whitespace DQUOTE, comma, semicolon,
|
|
46
|
+
* ; and backslash
|
|
47
|
+
*/
|
|
48
|
+
|
|
49
|
+
var cookieValueRegExp = /^("?)[\u0021\u0023-\u002B\u002D-\u003A\u003C-\u005B\u005D-\u007E]*\1$/;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* RegExp to match domain-value in RFC 6265 sec 4.1.1
|
|
53
|
+
*
|
|
54
|
+
* domain-value = <subdomain>
|
|
55
|
+
* ; defined in [RFC1034], Section 3.5, as
|
|
56
|
+
* ; enhanced by [RFC1123], Section 2.1
|
|
57
|
+
* <subdomain> = <label> | <subdomain> "." <label>
|
|
58
|
+
* <label> = <let-dig> [ [ <ldh-str> ] <let-dig> ]
|
|
59
|
+
* Labels must be 63 characters or less.
|
|
60
|
+
* 'let-dig' not 'letter' in the first char, per RFC1123
|
|
61
|
+
* <ldh-str> = <let-dig-hyp> | <let-dig-hyp> <ldh-str>
|
|
62
|
+
* <let-dig-hyp> = <let-dig> | "-"
|
|
63
|
+
* <let-dig> = <letter> | <digit>
|
|
64
|
+
* <letter> = any one of the 52 alphabetic characters A through Z in
|
|
65
|
+
* upper case and a through z in lower case
|
|
66
|
+
* <digit> = any one of the ten digits 0 through 9
|
|
67
|
+
*
|
|
68
|
+
* Keep support for leading dot: https://github.com/jshttp/cookie/issues/173
|
|
69
|
+
*
|
|
70
|
+
* > (Note that a leading %x2E ("."), if present, is ignored even though that
|
|
71
|
+
* character is not permitted, but a trailing %x2E ("."), if present, will
|
|
72
|
+
* cause the user agent to ignore the attribute.)
|
|
73
|
+
*/
|
|
74
|
+
|
|
75
|
+
var domainValueRegExp = /^([.]?[a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)([.][a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)*$/i;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* RegExp to match path-value in RFC 6265 sec 4.1.1
|
|
79
|
+
*
|
|
80
|
+
* path-value = <any CHAR except CTLs or ";">
|
|
81
|
+
* CHAR = %x01-7F
|
|
82
|
+
* ; defined in RFC 5234 appendix B.1
|
|
83
|
+
*/
|
|
84
|
+
|
|
85
|
+
var pathValueRegExp = /^[\u0020-\u003A\u003D-\u007E]*$/;
|
|
34
86
|
|
|
35
87
|
/**
|
|
36
88
|
* Parse a cookie header.
|
|
@@ -39,107 +91,128 @@ var fieldContentRegExp = /^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;
|
|
|
39
91
|
* The object has the various cookies as keys(names) => values
|
|
40
92
|
*
|
|
41
93
|
* @param {string} str
|
|
42
|
-
* @param {object} [
|
|
94
|
+
* @param {object} [opt]
|
|
43
95
|
* @return {object}
|
|
44
96
|
* @public
|
|
45
97
|
*/
|
|
46
98
|
|
|
47
|
-
function parse(str,
|
|
99
|
+
function parse(str, opt) {
|
|
48
100
|
if (typeof str !== 'string') {
|
|
49
101
|
throw new TypeError('argument str must be a string');
|
|
50
102
|
}
|
|
51
103
|
|
|
52
|
-
var obj = {}
|
|
53
|
-
var
|
|
54
|
-
|
|
104
|
+
var obj = {};
|
|
105
|
+
var len = str.length;
|
|
106
|
+
// RFC 6265 sec 4.1.1, RFC 2616 2.2 defines a cookie name consists of one char minimum, plus '='.
|
|
107
|
+
if (len < 2) return obj;
|
|
55
108
|
|
|
56
|
-
var
|
|
57
|
-
|
|
58
|
-
|
|
109
|
+
var dec = (opt && opt.decode) || decode;
|
|
110
|
+
var index = 0;
|
|
111
|
+
var eqIdx = 0;
|
|
112
|
+
var endIdx = 0;
|
|
59
113
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
114
|
+
do {
|
|
115
|
+
eqIdx = str.indexOf('=', index);
|
|
116
|
+
if (eqIdx === -1) break; // No more cookie pairs.
|
|
64
117
|
|
|
65
|
-
|
|
118
|
+
endIdx = str.indexOf(';', index);
|
|
66
119
|
|
|
67
120
|
if (endIdx === -1) {
|
|
68
|
-
endIdx =
|
|
69
|
-
} else if (
|
|
121
|
+
endIdx = len;
|
|
122
|
+
} else if (eqIdx > endIdx) {
|
|
70
123
|
// backtrack on prior semicolon
|
|
71
|
-
index = str.lastIndexOf(';', eqIdx - 1) + 1
|
|
72
|
-
continue
|
|
124
|
+
index = str.lastIndexOf(';', eqIdx - 1) + 1;
|
|
125
|
+
continue;
|
|
73
126
|
}
|
|
74
127
|
|
|
75
|
-
var
|
|
128
|
+
var keyStartIdx = startIndex(str, index, eqIdx);
|
|
129
|
+
var keyEndIdx = endIndex(str, eqIdx, keyStartIdx);
|
|
130
|
+
var key = str.slice(keyStartIdx, keyEndIdx);
|
|
76
131
|
|
|
77
132
|
// only assign once
|
|
78
|
-
if (
|
|
79
|
-
var
|
|
133
|
+
if (!obj.hasOwnProperty(key)) {
|
|
134
|
+
var valStartIdx = startIndex(str, eqIdx + 1, endIdx);
|
|
135
|
+
var valEndIdx = endIndex(str, endIdx, valStartIdx);
|
|
80
136
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
137
|
+
if (str.charCodeAt(valStartIdx) === 0x22 /* " */ && str.charCodeAt(valEndIdx - 1) === 0x22 /* " */) {
|
|
138
|
+
valStartIdx++;
|
|
139
|
+
valEndIdx--;
|
|
84
140
|
}
|
|
85
141
|
|
|
142
|
+
var val = str.slice(valStartIdx, valEndIdx);
|
|
86
143
|
obj[key] = tryDecode(val, dec);
|
|
87
144
|
}
|
|
88
145
|
|
|
89
146
|
index = endIdx + 1
|
|
90
|
-
}
|
|
147
|
+
} while (index < len);
|
|
91
148
|
|
|
92
149
|
return obj;
|
|
93
150
|
}
|
|
94
151
|
|
|
152
|
+
function startIndex(str, index, max) {
|
|
153
|
+
do {
|
|
154
|
+
var code = str.charCodeAt(index);
|
|
155
|
+
if (code !== 0x20 /* */ && code !== 0x09 /* \t */) return index;
|
|
156
|
+
} while (++index < max);
|
|
157
|
+
return max;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
function endIndex(str, index, min) {
|
|
161
|
+
while (index > min) {
|
|
162
|
+
var code = str.charCodeAt(--index);
|
|
163
|
+
if (code !== 0x20 /* */ && code !== 0x09 /* \t */) return index + 1;
|
|
164
|
+
}
|
|
165
|
+
return min;
|
|
166
|
+
}
|
|
167
|
+
|
|
95
168
|
/**
|
|
96
169
|
* Serialize data into a cookie header.
|
|
97
170
|
*
|
|
98
|
-
* Serialize
|
|
99
|
-
* http headers. An optional options object
|
|
171
|
+
* Serialize a name value pair into a cookie string suitable for
|
|
172
|
+
* http headers. An optional options object specifies cookie parameters.
|
|
100
173
|
*
|
|
101
174
|
* serialize('foo', 'bar', { httpOnly: true })
|
|
102
175
|
* => "foo=bar; httpOnly"
|
|
103
176
|
*
|
|
104
177
|
* @param {string} name
|
|
105
178
|
* @param {string} val
|
|
106
|
-
* @param {object} [
|
|
179
|
+
* @param {object} [opt]
|
|
107
180
|
* @return {string}
|
|
108
181
|
* @public
|
|
109
182
|
*/
|
|
110
183
|
|
|
111
|
-
function serialize(name, val,
|
|
112
|
-
var
|
|
113
|
-
var enc = opt.encode || encode;
|
|
184
|
+
function serialize(name, val, opt) {
|
|
185
|
+
var enc = (opt && opt.encode) || encodeURIComponent;
|
|
114
186
|
|
|
115
187
|
if (typeof enc !== 'function') {
|
|
116
188
|
throw new TypeError('option encode is invalid');
|
|
117
189
|
}
|
|
118
190
|
|
|
119
|
-
if (!
|
|
191
|
+
if (!cookieNameRegExp.test(name)) {
|
|
120
192
|
throw new TypeError('argument name is invalid');
|
|
121
193
|
}
|
|
122
194
|
|
|
123
195
|
var value = enc(val);
|
|
124
196
|
|
|
125
|
-
if (
|
|
197
|
+
if (!cookieValueRegExp.test(value)) {
|
|
126
198
|
throw new TypeError('argument val is invalid');
|
|
127
199
|
}
|
|
128
200
|
|
|
129
201
|
var str = name + '=' + value;
|
|
202
|
+
if (!opt) return str;
|
|
130
203
|
|
|
131
204
|
if (null != opt.maxAge) {
|
|
132
|
-
var maxAge = opt.maxAge
|
|
205
|
+
var maxAge = Math.floor(opt.maxAge);
|
|
133
206
|
|
|
134
|
-
if (
|
|
207
|
+
if (!isFinite(maxAge)) {
|
|
135
208
|
throw new TypeError('option maxAge is invalid')
|
|
136
209
|
}
|
|
137
210
|
|
|
138
|
-
str += '; Max-Age=' +
|
|
211
|
+
str += '; Max-Age=' + maxAge;
|
|
139
212
|
}
|
|
140
213
|
|
|
141
214
|
if (opt.domain) {
|
|
142
|
-
if (!
|
|
215
|
+
if (!domainValueRegExp.test(opt.domain)) {
|
|
143
216
|
throw new TypeError('option domain is invalid');
|
|
144
217
|
}
|
|
145
218
|
|
|
@@ -147,7 +220,7 @@ function serialize(name, val, options) {
|
|
|
147
220
|
}
|
|
148
221
|
|
|
149
222
|
if (opt.path) {
|
|
150
|
-
if (!
|
|
223
|
+
if (!pathValueRegExp.test(opt.path)) {
|
|
151
224
|
throw new TypeError('option path is invalid');
|
|
152
225
|
}
|
|
153
226
|
|
|
@@ -178,8 +251,7 @@ function serialize(name, val, options) {
|
|
|
178
251
|
|
|
179
252
|
if (opt.priority) {
|
|
180
253
|
var priority = typeof opt.priority === 'string'
|
|
181
|
-
? opt.priority.toLowerCase()
|
|
182
|
-
: opt.priority
|
|
254
|
+
? opt.priority.toLowerCase() : opt.priority;
|
|
183
255
|
|
|
184
256
|
switch (priority) {
|
|
185
257
|
case 'low':
|
|
@@ -234,17 +306,6 @@ function decode (str) {
|
|
|
234
306
|
: str
|
|
235
307
|
}
|
|
236
308
|
|
|
237
|
-
/**
|
|
238
|
-
* URL-encode value.
|
|
239
|
-
*
|
|
240
|
-
* @param {string} val
|
|
241
|
-
* @returns {string}
|
|
242
|
-
*/
|
|
243
|
-
|
|
244
|
-
function encode (val) {
|
|
245
|
-
return encodeURIComponent(val)
|
|
246
|
-
}
|
|
247
|
-
|
|
248
309
|
/**
|
|
249
310
|
* Determine if value is a Date.
|
|
250
311
|
*
|
|
@@ -253,8 +314,7 @@ function encode (val) {
|
|
|
253
314
|
*/
|
|
254
315
|
|
|
255
316
|
function isDate (val) {
|
|
256
|
-
return __toString.call(val) === '[object Date]'
|
|
257
|
-
val instanceof Date
|
|
317
|
+
return __toString.call(val) === '[object Date]';
|
|
258
318
|
}
|
|
259
319
|
|
|
260
320
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cookie",
|
|
3
3
|
"description": "HTTP server cookie parsing and serialization",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.7.1",
|
|
5
5
|
"author": "Roman Shtylman <shtylman@gmail.com>",
|
|
6
6
|
"contributors": [
|
|
7
7
|
"Douglas Christopher Wilson <doug@somethingdoug.com>"
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"SECURITY.md",
|
|
30
30
|
"index.js"
|
|
31
31
|
],
|
|
32
|
+
"main": "index.js",
|
|
32
33
|
"engines": {
|
|
33
34
|
"node": ">= 0.6"
|
|
34
35
|
},
|
|
@@ -38,7 +39,6 @@
|
|
|
38
39
|
"test": "mocha --reporter spec --bail --check-leaks test/",
|
|
39
40
|
"test-ci": "nyc --reporter=lcov --reporter=text npm test",
|
|
40
41
|
"test-cov": "nyc --reporter=html --reporter=text npm test",
|
|
41
|
-
"update-bench": "node scripts/update-benchmark.js"
|
|
42
|
-
"version": "node scripts/version-history.js && git add HISTORY.md"
|
|
42
|
+
"update-bench": "node scripts/update-benchmark.js"
|
|
43
43
|
}
|
|
44
44
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "express",
|
|
3
3
|
"description": "Fast, unopinionated, minimalist web framework",
|
|
4
|
-
"version": "4.21.
|
|
4
|
+
"version": "4.21.1",
|
|
5
5
|
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
|
6
6
|
"contributors": [
|
|
7
7
|
"Aaron Heckmann <aaron.heckmann+github@gmail.com>",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"body-parser": "1.20.3",
|
|
34
34
|
"content-disposition": "0.5.4",
|
|
35
35
|
"content-type": "~1.0.4",
|
|
36
|
-
"cookie": "0.
|
|
36
|
+
"cookie": "0.7.1",
|
|
37
37
|
"cookie-signature": "1.0.6",
|
|
38
38
|
"debug": "2.6.9",
|
|
39
39
|
"depd": "2.0.0",
|
|
@@ -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
|
+
[](https://github.com/forwardemail/get-fqdn/actions/workflows/ci.yml)
|
|
4
|
+
[](https://github.com/sindresorhus/xo)
|
|
5
|
+
[](https://github.com/prettier/prettier)
|
|
6
|
+
[](https://lass.js.org)
|
|
7
|
+
[](LICENSE)
|
|
8
|
+
[](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.
|